by Janus Systems - Product Type: Component / .NET WinForms / .NET Class / 100% Managed Code
You can also buy Janus GridEX for .NET as part of Janus WinForms Controls Suite
If you require more information please Contact Us
How can I fix the TotalRow position at the botton edge of the grid not after the last record?
Reply
Hi,
is there any chance to use converters for databound columns.
I have a list of entities, which contain some complex properties. Now i want to map these properties to a string column. And I also want, if the cell value changes, that the string value is written back into the complex property.
I need somthing like a converter (IValueConverter), which exists in WPF. Or any possibility to hook into the binding process, like the Format- or Parse-Events, which exist in WinForms.
E.g.
//the entity
public class Device
{
string Name { get; set; }
MultilanguageString Description { get; set; }
MultilanguageString Name { get; set; }
}
//The converter i want to use
public object MultilanguageToStringConverter(object source)
{
string languageCode = Thread.CurrentThread.CurrentCulture.TwoLetterISOLanguageName;
return (source as MultilanguageString).GetValueForLanguage(languageCode);
}
//some similar to convert back
Kind regards
Reply
Hello!
Having sortable bound columns on a GridEX controls works great. My problem is that I would like to have soartable unbound columns. Do you think this can be achieved ?
Reply
hey, I'm usint gridEX for .net and I have a Q , it there a way to make the tooltip text a default;
I have a dataset and insted of making a loop and inserts the text for each cell , is there a way to make it by default?
Reply
Is there any way to display text that is wrapped and is hidden due to the rowheight? Can row height be set differently for different rows?
Reply
Hi
I want to change the colour of each sell in my grid based on the value of a function that validates if the value in in the related range or not .
Can anybody tell me how I should do this ?
Reply
I am binding MS SQL data set with GridEx control but on loading this grid, all the numeric columns display "$" sigh before value. Is there any solution?
Reply
RE: Janus GridEX for .NET nc_1426 [UAE] 04-Sep-2011 13:06:47
first you can remove the letter "c" from the "Format string " property of each column.
the other soloution is to change " currency setting" of the computer you are running the progrram on in" regional and language " setting
in your control pannel (windows platform ) to show no character for the currency data .
Whichever best suits you :)
ReplyRE: RE: Janus GridEX for .NET amish.jariwala [India] 30-Jan-2012 10:37:15
Dear,
Its not working, tried both solution u suggested.
ReplyRE: RE: Janus GridEX for .NET amish.jariwala [India] 30-Jan-2012 11:15:57
I am getting pound symbol before numeric value,
Reply
In our application, a Janus.Windows.GridEX.GridEX object is defined via designer in the class CutGeoForm as follows:
this.components = new System.ComponentModel.Container();
Janus.Windows.GridEX.GridEXLayout gridEXLayout1 = new Janus.Windows.GridEX.GridEXLayout();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CutGeoForm));
this.gridObjects = new Janus.Windows.GridEX.GridEX();
As a result of setting the SelectionMode property to "MultipleSelection", the InitializeComponent() procedure of class CutGeoForm
contains the following line code:
this.gridObjects.SelectionMode = Janus.Windows.GridEX.SelectionMode.MultipleSelection;
A "Delete" push button is also provided in the form CutGeoForm having the following properties:
this.buttonDelete.Click += new System.EventHandler(this.buttonDelete_Click);
The plan is to make a multiple selection of lines in the grid, and then by pushing the Delete push button,
to take out the selected lines, and the table will contain only the unselected lines.
The private void buttonDelete_Click(object sender, EventArgs e) procedure (the callback proc. of the Delete button)
was written as follows:
private void buttonDelete_Click(object sender, EventArgs e)
{
GridEXRow selRow;
int objectsSel = this.gridObjects.SelectedItems.Count;
if (objectsSel > 0)
{
for (int i = 0; i < objectsSel; i++)
{
selRow = this.gridObjects.SelectedItems[i].GetRow();
this.ObjectsDataTable.Rows.RemoveAt(selRow.RowIndex);
}
this.gridObjects.SelectedItems.Clear();
}
...
}
The problem is that the line code
selRow = this.gridObjects.SelectedItems[i].GetRow();
works well only for index i = 0; other indexes != 0 raise an error,
and by using
selRow = this.gridObjects.SelectedItems[0].GetRow();
the deleted lines are not exactly the selected lines.
Thanks,
Betty
Reply
i want to know how can i show the record count in one of the gridex columns
Reply
RE: Janus GridEX for .NET support@componentsource.com 14-Feb-2011 13:09:02
Please view the help file topic "AggregateFunction Enumeration - Specifies the aggregate function to apply in a column. The value this function returns is displayed in the total row."
Reply
Hi,
I'm working with Janus package V3.5 under .Net 3.5 environment
I'm trying to select a row programmatically, but I cannot find the right pattern to do so.
Please advise,
Zafrir
Reply
RE: Janus GridEX - select row programmatic... blorelai [Romania] 17-Mar-2011 09:41:32
Use the Row property of the grid if you have the index of the row you want to select, or use the Find function if you want to have the selection made by knowing only a value in the row.
Regards,
LRL
Reply
Hello
I want to buy Janus GridEX for .NET, but I am working with Linq to Sql and I did not find an example with this method of Liaison data.
me wants to add, edit, and delete data in a grid.
Microsoft adds a DataGridView control:
GridView1.datasource = rs
GridView1.DataBind ()
DataBind () does not exist in Janus GridEX for .NET
Thank you for your reply
Reply
RE: Janus GridEX for .NET fly_neon [Mexico] 18-Jun-2010 15:43:09
soy desarrollador
ReplyRE: RE: Janus GridEX for .NET vikram.mca500 [India] 22-Jul-2010 10:42:12
Use DataBindings Property
Reply
How to create MultiColumn DropDowns in code?
Reply
RE: Janus GridEX for .NET - MultiColumn Dr... blorelai [Romania] 17-Mar-2011 10:14:11
It works pretty much the same as the GridEX itself.
- instantiate
myDropDown As New GridEXDropDown
- bind to a dataSource (a datatable in this case)
myDropDown.SetDataBinding(dtSource, dtSource.TableName)
myDropDown.RetrieveStructure()
- and then have it set as wanted (ValueMemeber property, DisplayMember, column settings and so on)
Regards,
LRL
Reply
I am using GridEXPrintDocument control to allow user to print or preview the Janus Grid control. The control works perfect except for displaying the current page number in the footers.
Here is my code
// Create a GridEXPrintDocument
GridEXPrintDocument printDoc = new GridEXPrintDocument ();
printDoc.PageFooterLeft = printDoc.Page.ToString();
System.Windows.Forms.PrintPreviewDialog printPreviw = new System.Windows.Forms.PrintPreviewDialog();
printPreviw.Document = printDoc;
I also tried to override "OnPrintPage(System.Drawing.Printing.PrintPageEventArgs e)" event on the GridExPrintDocument but no sucess.
Is that a bug or am i using it wrong?
thank you.
Reply
RE: Show page# using GridEXPrintDocument.Page mark.vainshtein [Australia] 26-Sep-2011 02:02:58
Here is my code that works:
Private Sub btnPrint_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnPrint.Click
With GridEXPrintDocument1
.GridEX = GridEX1
.PageHeaderCenter = "My Page Header"
.PrepareDocument() ' to calculate # of pages
.Print()
End With
End Sub
'This is where Page property becoming available.
Private Sub GridEXPrintDocument1_PrintPage(ByVal sender As System.Object, ByVal e As System.Drawing.Printing.PrintPageEventArgs) Handles GridEXPrintDocument1.PrintPage
With GridEXPrintDocument1
.PageFooterCenter = String.Format("Page {0} of {1}", .Page.ToString, .TotalPages.ToString)
End With
End Sub
Cheers
Reply
It can copy and paste lines in the grid
Reply
I need to disable specific Cells of a GridEX, how is that possible?
The Cells have no enable property and i dont want to disable the whole column.
And via the EditingCell event i can just disable that i can edit the cell (via e.Cancel) but i can not disable the visibility of the control.
I hope someone can help me
Tested
Reply
RE: Janus GridEX for .NET kevintranscore [USA] 10-Mar-2010 20:14:03
I'm bumping up against this same problem. I found several posts in Janus's forums about this. Janus's support always answered that it isn't possible to to disable a control for a single cell.
This is the work around Janus suggested (posted 7/5/05):
The only way would be to use images in the cell instead of using a CheckBox. Set ColumnType = ColumnType.Image and EditType = EditType.NoEdit and, in the FormattingRow, assign the image you need to the cell depending on its values and if the cell is enabled or not.
To edit this column as checkbox, in the MouseDown event, if the HitTest method returns Cell and the ColumnFromPoint returns the checkbox column, change the value of the cell and its image.
ReplyRE: RE: Janus GridEX for .NET Tested [Austria] 11-Mar-2010 10:22:09
Thank you alot :)
its not the way i wanted how it works but better than nothing
Reply
RE: Janus GridEX for .NET nc_1426 [UAE] 04-Sep-2011 13:11:06
I always use this methos which works perfectly
use the editigcell event of the gridex
Private Sub GridEX1_EditingCell(ByVal sender As System.Object, ByVal e As Janus.Windows.GridEX.EditingCellEventArgs) Handles GridEX1.EditingCell
' if you want to disable based on the "name" here is the code
If e.Column.Key = "Date" Or e.Column.Key = "Reporttime" Then
e.Cancel = True
End If
' if you want to disable based on the" value " here is the code
If IIf(GridEX1.CurrentRow.Cells("Verified").Value Is DBNull.Value, False, GridEX1.CurrentRow.Cells("Verified").Value) = True Then
e.Cancel = True
End If
End Sub
I hope it helps you
Reply
I have associated a collection of objects to Janus.Windows.GridEX.GridEX.DataSource ,but the same is not getting reflected in the this.bgControl.IFrameImageGridEX.GetRows()
IT is showing empty list.
I want to set tool tip for these rows,but soon after i bind the data i am not able to view the rows.
This entire control is put into a tabpage ,when the tab page is switched and returned i can see the rows in it get updated
I hope the problem is clear.Please let me know if anyone knows the solution for this.
Reply
Hi All,
This is about format a cell in Janus Grid, I am using Janus EXGrid 2.0, here is what i did:
GridEXFormatCondition fco = new GridEXFormatCondition(
this.gridEX1.RootTable.Columns[4],
ConditionOperator.Equal, true);
fco.TargetColumn = this.gridEX1.RootTable.Columns[4];
fco.TargetColumn.CellStyle.BackColor = Color.LightYellow;
This piece of code formats the back color of whole Columns[4] to light yellow, now what i really want is to format a cell in a grid rather than the whole Columns[4] to light yellow.
Also, I know how to format a row in a grid, but not quite sure how to format a specific cell.
If someone in here can shed me a light will be great.
Reply
RE: Janus GridEX for .NET nc_1426 [UAE] 04-Sep-2011 13:16:14
I have the same problem . I want to change the color of a specefic cell based on it's value .
If you found out how please share the answer here .
thanx
Reply
After removing the current row I got this exception:
System.NullReferenceException: Object reference not set to an instance of an object.
at Janus.Data.JanusTotalRow.IsRowVisible()
at Janus.Windows.GridEX.GridEXRow.get_IsVisible()
at Janus.Windows.GridEX.GridEXRow.get_Position()
at Janus.Windows.GridEX.GridEX.get_Row()
at Janus.Windows.GridEX.GridEX.UpdateData()
at Janus.Windows.GridEX.GridEX.a(Int32 , GridEXColumn , Boolean )
at Janus.Windows.GridEX.GridEX.c(Int32 , GridEXColumn )
at Janus.Windows.GridEX.GridEX.t(Int32 )
at Janus.Windows.GridEX.GridEX.set_Row(Int32 value)
Is this something known?
Reply
RE: Janus GridEX for .NET nc_1426 [UAE] 04-Sep-2011 13:15:10
Check if you are doing something on rowchange
maybe you are reading something or .. and when the grid is empty or when you are poiting at a null row you may get this error .
Reply
I'm trying the GridEx, and I need to be able to hook the grid to a c# dictionary which contains the data for each row. This dictionary has data for 92,000 rows, but I can't seem to be able to have the GridEx update itself when data is remove or added to the dictionary. Also, displaying the 92k rows takes too long.
Reply
We have an error that is getting this error intermittently on ASP.NET 2.0 web applications when loading Janus GridEx on our web page, our application running under Win2003 server.
"Loading this assembly would produce a different grant set from other instances. (Exception from HRESULT: 0x80131401)"
is there any way to solve this problem ?
Any help will be appreciated, thanks.
Reply
Has this happened to anybody?
If I set the row height to 15 with the default font size (8.25pt), cell content will disappear if the content does not fit into the cell (which actually should get truncated).
But if I choose a smaller font size, say 6pt, the content will get truncated properly.
Is there any relation between font size and row height?
Thx.
Reply
RE: Disappearing cell content. marvin [The Netherlands] 02-Aug-2011 09:54:42
Hi,
Got the same issue here.
Only I get this if :
- Columns are resized
- Checkbox is checked /unchecked
- Columns are grouped
And the strange thing is it happens frequently but not allways
Info :
OS = win 7
Development = VB6
JGrid = 2000 (2.0.2144)
Boundmodus = unbound
Reply
Hi
Im writing for my appliation a printing endine, when i can print what i want from the screen in the way i want it.
i also like to print the grid content, but i cant use the grid print function because it prints it in a new page
how can i 'get' the content in a table format like you do it ?
thank you
Ravit
Reply
RE: Janus GridEX for .NET support@componentsource.com 24-Mar-2009 13:59:20
Hi, here is the reply from the publisher:
---
Unfortunately, it is not possible to merge a GridEXPrintDocument with another PrintDocument.
---
Reply
Hi i am using the Janus GridEx 3.5 in VS 2008.
When I try enumerate the items in GridExSelectedItems or rows in GridEx.GetRows
I get the following exception: Cannot find the method on the object instance.
Any idea why this is happening?
Thanks,
Graham
Reply
Can anyone help me put a total line on a Janus Gridex? I have a grid and all I want is a total of the columns in the footer. I was able to get the total line to appear, but I don't know how to populate it with totals.
Reply
Hi everyone
i am stck in making Hierarchila Grid. my requirement is i have create multilevel report
i am unable to retrive child node.
when i am chicking (+) sine it converted ti (-) but
envent not fire neither data display wiseversa.
pls help me
thx
Hari
Reply
how haqv i show hierarchial structure in design mode
i have set the Hierarchial = true but it's not working
can anyone help
thx
Reply
I am trying to display my Janus calendar control as blank or empty when the page loads. The main use of this is the user has to select a value and so there should be no default values set for this control unless its selected. I tried but I feel there has to be a value in it. But if there's a way, I'd Really appreciate the help.
Thank you
Reply
Here is my scenario.
In my ASPX page, I have a Janus panel(Group style=Tab) with Three tabs in it.Each tab is a user control and each such user control has a Janus Grid(Just one column) in it.
Each grid gets populated with data and bottom navigation panel displays summary of the grid (Eg :Items count and page count in drop down).
My problem is that the bottom navigation panel does not stay at the bottom of the page. When the grid is small, the navigation panel comes at the middle of the page. I would like to keep this panel always at the bottom of the page.
Funny however, when I add a record to the janus grid thru textbox in that page, the bottom panel again goes back to the bottom of the page. I want to make sure that the bottom navigation page always stays at the bottom of the page no matter how big or small the grid is.
I compared the code of both the grids( Normal and the one when shrinked) and did not find any difference.
I am a newbee with Janusgrid and I can not seem to figure this out.
Please guide me ...
Thanks a lot.
Sri
Reply
I have a Janus gridEX with 3 groups on it and I want to be able to determine which group has been selected when the user clicks on it. How is this done?
Reply
I have a list of objects bound as the datasource for my gridEX, and the object properties are bound to table columns which display perfectly. In the gridEX designer i've created a child table and would like this table to display the information contained in another list which is held as a property of the list object. How can i bind the data for this inner list to the inner child table!?
Reply
Using GridEX v3.5...
I need a grid to display rows for about 5000 records, and I would like to use an unbound grid to display them. Using the gridex's AddItem method for each record works, but after a few thousand records it appears that adding a single record to the grid takes about 5 milliseconds (when adding thousands of records to the grid, this time adds up). Is there a way I can bulk update the grid without getting this performance hit?
Reply
Janus Gridex. net can work even with VB6 ?. thank you
Reply
Does anyone know how to select multiple cells (not rows) from a grid?
Reply
RE : Janus GridEX for .NET m.arroubi [Morocco] 17-Jul-2009 15:54:13
Merçi pour votre aide.
Reply
RE: Janus GridEX for .NET m.arroubi [Morocco] 17-Jul-2009 16:18:44
you can use :
Me.GridEX1.RootTable.Columns(indiceDuColonne).SelectableCells
Reply
RE: Janus GridEX for .NET smega.bongani [South Africa] 08-Feb-2010 13:10:57
Hi
I have a 2 checkbox columns that i use to select multiple rows. For eg. when i have col1 & col2. When i check col1, col2 must be unchecked & vice versa. And i wanna be able to select multiple rows.
Please help
Smega
Reply
RE: Janus GridEX for .NET Smega 08-Feb-2010 13:11:17
Hi
I have a 2 checkbox columns that i use to select multiple rows. For eg. when i have col1 & col2. When i check col1, col2 must be unchecked & vice versa. And i wanna be able to select multiple rows.
Please help
Smega
Reply
RE: Janus GridEX for .NET Smega 08-Feb-2010 13:11:28
Hi
I have 2 checkbox columns that i use to select multiple rows. For eg. when i have col1 & col2. When i check col1, col2 must be unchecked & vice versa. And i wanna be able to select multiple rows.
Please help
Smega
Reply
RE: Janus GridEX for .NET Smega 08-Feb-2010 13:11:58
Hi
I have 2 checkbox columns that i use to select multiple rows. For eg. col1 & col2. When i check col1, col2 must be unchecked & vice versa. And i wanna be able to select multiple rows.
Please help
Smega
Reply
We are considering Janus' Grid. We have to have a RightToLeft Support and this grid seems to to support this need
we want to create our own editor component and to place it in each editable cell when needed,
we did not see how this is possible.
thank you.
Reply
I have a problem with using Grid Ex each rows color.
i wanna applying diffirent color to specific row dynamically that i want
I know that Infragistic in that situation use this code.
this.GridEXNAME.Rows[specificRow].Appearance.BackColor = Color.black
But I don't have any idea for sloving that problem using Janus GridEx
How can I have codes for using that function with Janus GridEx?
Reply
Hi
I'm new to Janus Grid and am stuggling to get my ActiveX control (I believe created by Janus Grid?) to display the Access table it's linked to within an Intouch 10.0 application.
- I've been given a file SCADA_AX.OCX which i'm told must reside in path c:\scada\dependencies and this has been registered
- Within Intouch i can then 'see' this ActiveX so i can then install it.....so Intouch is now aware of it.
- I have a mimic which then contains a link to this ActiveX which should be displaying the Access table details
- I've setup the User/System DSNs to provide the drivers/path to the Access DB - both pointing to the .mdb file
- I can open the Access table and view the 6 records that currently exist in the 'tblProducts' table (however - before Access displays this data it says "Security Warning - Certain content in the database has been disabled - click Options - select Enable this content - then i can get at the table and its data...............so might there be an access/authorisation issue?? ie. has Intouch got the access rights to get at this data?)
Any help would be much appreciated!
Thanks in advance
Ashley C
Reply
Hi,
How can i Add a Dropdown list to Janus GridEx Control.
I want to add it when the page Load and not in EditType.
Reply me if you have any solutions.
Thanks in advance.
Reply
RE: Janus GridEX for .NET yaniv_e [Israel] 21-Dec-2008 07:01:34
We using some internal DLL's but it is almost the same for each DLL that the company create if not you should create it from base.
Try this:
this.incentivesGridPro1.Tables[0].Columns["metugmal_1"].HasValueList = true;
this.incentivesGridPro1.Tables[0].Columns["metugmal_1"].EditType = Janus.Windows.GridEX.EditType.DropDownList;
DataView dv = dsEmpPension.Tables[0].DefaultView;
this.incentivesGridPro1.Tables[0].Columns["metugmal_1"].ValueList.PopulateValueList(dv, "channel_code", "channel_name");
Reply
Hi,
How I can format a column in Janus Grid while data entry?
Reply
I can i change the background color of the row selected in the grid?
hope someone answer :)
Reply
How do i make particulat cell non editable
Reply
RE: Janus GridEX for .NET yaniv_e [Israel] 21-Dec-2008 07:03:02
Try this:
define the table and the column you wish to make uneditable and use this:
Janus.Windows.GridEX.EditType.NoEdit;
Reply
I am having grid with checkboxes and binding it with a datatable. Now, I would like to check a particular row if some other row is selected and deslect it if the other row is deslected. To make myself clear, I have 20 rows in grid and there are 2 rows with text "getme" and "checkme" . Now, after unchecking all checkboxes, if user checks "getme", then, "checkme" row checkbox should also get checked or vice-versa. My objective is that these 2 rows should have same status either both checked or both unchecked. Any help is appreciated.
Regards
Reply
checkbox column mseebohm [Canada] 01-May-2009 21:58:25
Hello,
I have a janus grid (unbound) with a checkbox column. I would like it to be so that only one row can be checked at a time, ie, if one row is checked and i check a second row, the first one becomes deselected. What is the best way of doing this? Maybe a checkbox is not even the way to go. (Ideally one would use radio buttons when a unique value is to be selected at one time, but as far as I know one can,t put radio buttons in a grid)
Thanks,
Max
ReplyRE: checkbox column papleah [Israel] 14-Nov-2010 07:49:38
I have the same problem. did anyone solve it?
thanks
Reply
Hello! Which is the latest version that still support Visual Studio 2003. It has to be compatible with Internet Explorer 7.
Reply
I have a problem for adding right-click event to column header of gridex. Please help to add this control to my gridex. I saw this property in northwind sample of janus that by this control user can sort, filter,set best fit,... by right-click on column header.
Reply
RE: Janus GridEX for .NET deeksha.chugh [India] 11-Sep-2008 09:23:49
I have a Janus grid right click functionality in one of the application I am working on.Please let me know how can i achieve the desired functionality.
Reply
Hi All,
How to remove the cell button from a particular row of the janus grid
thank you,
Reply
I'm using Janus GridEx for .Net ver 2.0.I set the TotalRow Property to true,but it doesn't show the sum of columns .it's judt empty.
How can i show the sum of one column at the end of the rows (in a total row) and then read the value of that in code?
Thanks
Reply
Hi All,
As per my requirement, I need to have a RadioButton in each row of a column.
I could not able to find the appropriate solution in Janus.Windows.GridEX. If anyone have a solution / examples...Please share with me.
My ID: prakashe5@yahoo.com
Thanks in Advance,
Prakash Shanmugam.
Reply
RE: Janus GridEX for .NET manuroassio [Argentina] 28-Sep-2007 16:20:01
Hi, my English is so bad, I hope you can understand me:
1- Right clik on the griEx grid, go to GridEX Designer.
2- On RootTable/Columns/select the whish column,
3- Then find Edit/EditType...there you can sect the dataType for your column.
Good Luck!!
Reply
Hi All,
How do i remove a row from the janus grid without having to remove the row from the datasource.
Or how do i hide a row so that it becomes invisible and thus disabled as to leave the datasource intact.
Regards,
Ed Tijgen
Reply
RE: Janus GridEX for .NET remove a row ylyyly2001 [China] 23-Sep-2007 10:10:27
asdf
Reply
Hi,
I'm trying to add multiline support to Janus Grid. such that, when a user press enter/ or tab in a cell, instead of adding a new janus row, a new line should be added to the same cell/column. Coulmns can be of fixed width.
Would be nice, if get some response.
THNX
Reply
Hi, I've licensed your Janus GridEx and it's works fine on Win XP SP2, but now I found problems installing on Windows Vista Bussiness. How can I fix it?
Thanks,
Agusti
Reply
Hi, I'm using the Janus grid Ex in ASP.NET v3 and wanted to perform the following operation:
When the page loads each column in the grid is NOT in edit mode and NOT marked as selectable.
After pressing a button I change the properties of the columns: EditType and Selectable to allow editing.
The user is now able to edit the data in the grid by pressing one of the cells in the grid.
I wish to automatically enter the first cell in the selected row into edit mode, right after the user presses the button (without the user having to click on the cell at all).
How can I accomplish that?
Thanks in advance. Tomer.
Reply
How can I add rows to a GridEx at runtime?
Reply
Hi,
Could any help me with how to do the ScheduleDataboundSample(CSharp) for Janus Components with CSLA business objects instead of datasets ..
Thanks in anticipation.
peter
Reply
RE: Janus GridEX for .NET askarzadeh_s [Italy] 11-Jul-2008 12:57:52
Hi
I want to a set DropDown Property of a column in GridEX control with the DropDown that I add to gridEx at run time
thanks
Reply
we are using janus gridEx for the our window application in that we are saving the grid data into the excel file using Export it is happening but the time stampe we are used is not displaying please help me.......
Reply
RE: Janus GridEX for .NET aishahengland [United Kingdom] 05-Jun-2007 16:48:05
Please elaborate
Reply
RE: Janus Grid/Intouch v10.0/MS Access ashley.copestick [United Kingdom] 17-Apr-2008 10:39:28
Hi
I'm new to Janus Grid and am stuggling to get my ActiveX control (I believe created by Janus Grid?) to display the Access table it's linked to within an Intouch 10.0 application.
- I've been given a file SCADA_AX.OCX which i'm told must reside in path c:\scada\dependencies and this has been registered
- Within Intouch i can then 'see' this ActiveX so i can then install it.....so Intouch is now aware of it.
- I have a mimic which then contains a link to this ActiveX which should be displaying the Access table details
- I can open the Access table and view the 6 records that currently exist in the 'tblProducts' table (however - when i before Access displays this data it says "Security Warning - Certain content in the database has been disabled - click Options - select Enable this content - then i can get at the table and its data...............so might there be an access/authorisation issue?? ie. has Intouch got the access rights to get at this data?)
Any help would be much appreciated!
Thanks in advance
Ashley C
Reply
I am having a problem with a filtered GridEx table. I have filtered a the data in the table on a particular column. When I rebind, the data displays correctly in the view, but calls to the datarows of selected items return the rows as if no filter has been applied. Here is an example:
Underlying data (2 columns: first name & surname)
Firtname Surname
=================
Matthew Brown
Jon Smith
David Jones
* Second row is selected: grid.SelectedItems[0].GetRow().DataRow returns the row representing 'Jon Smith'.
Filter applied on surname ('Smit*'). View shows:
Firtname Surname
=================
Jon Smith
* First row is selected: grid.SelectedItems[0].GetRow().DataRow returns the row representing 'Jon Smith'.
If I bind the data again with the following data:
Firtname Surname
=================
Matthew Brown
Jon Smith
David Jones
Anew Person
The filter still only shows the following:
Firtname Surname
=================
Jon Smith
* First row is selected: grid.SelectedItems[0].GetRow().DataRow returns the row representing 'Matthew Brown', and not 'Jon Smith' as expected.
Any ideas?
Cheers,
David
Reply
How can I change selected property of a row?( it's read only)
Reply
RE: Janus GridEX for .NET abedtahseen1983 [Israel] 04-Mar-2007 12:02:04
651256556
Reply
I cannot get my grid to bind to a SQLDataSource. It states the source is invalid, however the source is valid. Any suggestions?
Reply
Hi
As we have Component, and its dll are as Janus.Windows.GridEX.v3.dll ,Janus.Windows.Common.v3.dll,Janus.Windows.CalendarCombo.v3.dll,Janus.Data.v3.dll ,
I want to know is this windows control or Web Control, If this is windows control then can we use it as web control in ASP.net page.
Gopal
Reply
Hello,
I'm trying to create a class to export GridExs to MS Excel files with Janus GridEx 1.5 and I have the following code
exportGridBuilder.Append("<tr>")
For Each rowCell As Janus.Web.GridEX.GridEXCell In record.Cells()
exportGridBuilder.Append("<td>")
exportGridBuilder.Append(rowCell.Text())
exportGridBuilder.Append("</td>")
Next
exportGridBuilder.Append("</tr>")
I'm able to display the table structure but I can't get the Cell content displayed, Could someone tell me what I doing wrong or where i can found the support information?
In advance, thank you for you help.
Reply
I am using the evaluation version of gridex , is it possible in gridex to suppress the rows that contain null or blank value .
Reply
We are considering Janus' Grid. We have to have a RightToLeft Support and this grid seems to to support this need
we want to create our own editor component and to place it in each editable cell when needed,
we did not see how this is possible.
thank you.
Ron
Reply
Does this grid support embedded treeviews/group-by functionality in columns? If so,
1. Is this embedded treeview improved over the Windows Forms treeview?
2. If so, does it support displaying images for some nodes but not for others? (A known limitation of the existing Windows Forms treeview).
3. Finally, does the treeview expose expand/collapse events, as I need to be able to change formatting style for a given node depending on whether it's expanded or collapsed.
Thanks very much!
Reply
I have one editable column in a Janus Grid. I want to limit which of the cells in this column that can be edited based on another column. If Column 2 has a -1 then column 1 is not allowed to be edited. If Column 2 has anything else in it then Column 1 is allowed to be edited. So basically I am trying to limit which cells in a column can be edited...
Any ideas on how I can make this happen?
TIA,
rpb
Reply
How can I get the value of a selected cell. For example I have a row and I can get the position but not the value of that cell.
Reply
RE: Call Value hoah2000 [Viet Nam] 14-Jul-2006 10:33:47
asr
Reply
RE: Call Value giavarra [Germany] 19-Jul-2006 18:10:48
try this ...
Janus.Windows.GridEX.GridEXRow _currentRow = this.GetRow ();
Janus.Windows.GridEX.GridEXCell _cellContent = _currentRow.Cells["colname"];
string _sCellText = _cellContent.Text;
Reply
RE: Call Value Shine [Germany] 19-Jul-2006 18:11:25
try this ...
Janus.Windows.GridEX.GridEXRow _currentRow = this.GetRow ();
Janus.Windows.GridEX.GridEXCell _cellContent = _currentRow.Cells["colname"];
string _sCellText = _cellContent.Text;
ReplyRE: RE: Call Value usman_257 [Pakistan] 16-Aug-2007 08:37:29
hi,
well is there any way to get the characters being entered in the cell?
the method written above will give the previously stored value but not the current characters being entered.
Reply
I keep thinking that Gridex can be set to "multiple rows" similar to that like Quickbooks bank register. Is this possible or am I racking my brain on how I have done this for nothing?
Thanks
Reply
I keep thinking that Gridex can be set to "multiple rows" similar to that like Quickbooks bank register. Is this possible or am I racking my brain on how I have done this for nothing?
Thanks
Reply
Hello Component Source Guys:
I am trying to update data from dataset to my gridex but it's impossible, exist some method to do this.
I know
GridEX1.UpdateData() 'GridEX -> ds
But
GridEX1.?????????? ' GridEX <- ds
Thanks
Reply
RE: Janus GridEX Update from DataSet sascha [Germany] 02-Apr-2007 12:48:27
Have you tried the Refetch method?
Reply
I'm using Janus GridEx control in my project with a Hierarchical structure. I have done groupby on column1 by I need the Header Caption to be Column5, Janus Control doesn't allow me to override the value. I'm not able to call the resetHeaderCaption method since I have the instance of GridEx, rather than the GridEx group. Any help would be appreciated. Thanks
Reply
Is it possible to bind the Janus GridEX to a filtered DataRow?
Reply
Is it possible to disable specific row/rows in GridEX grid ?
GridEXRow[] ParentRows = DataGrid.GetRows();
foreach (GridEXRow row in ParentRows)
{
GridEXRow[] childRecords = row.GetChildRecords();
foreach (GridEXRow childRow in childRecords)
{
................?
}
}
Reply
Hi,
I am using the evaluation version of GridEx of Janos.
What I would to do with it is to load ANY hierachcal XML, and to allow to update it (by Read XML and WriteXML).
I saw in your example that you do have a hierachical view - which I didn't figure out how to do until now.
What I did until now is loading and saving an XML file - but a FLAT one, not HIERACHCAL. Also I had to define in advance the table that correspond to the grid.
So I would to know 2 things:
1. How to load a HIERACHICAL Xml file and not a flat one.
2. How to load any file - without defining the table and the table columns in advance.
Can you help me with this ?
Thanks in advance !
Ofer
Reply
Does anyone answer these questions ???
Reply
Hi
I have searched - so far in vain - for properties to control the layout of fields on a Single Card. Only view I can get is a single column layout.
Can anyone help?
Thanks.
Reply
Is it possible to set the column width on a column in the roottable to anything less than 8 pixles? Anytime that I try to do this it sets the width of the column to 8 pixles.
Reply
Is it possible to set the column width on a column in the roottable to anything less than 8 pixles? Anytime that I try to do this it sets the width of the column to 8 pixles.
Reply
Is this control designed only for winForm or webpage compatible? We want to use this control in apsx page, is it possible?
Reply
Is it possible to drag a row from the GridEX and start a drag/drop operation.
(ie. click and hold down the LMB and drag the selection onto another control)
Reply
How can I skip the automatic setting of default values on columns in GridEX?
I tried to give a datarowview in GetNewRow event (e.NewRow) and I hoped that this will be used but GridEX ignores it and always sets the default values of columns (that are empty strings). So, erases the values I already have my new row.
Reply
Quanto ancora per l'uscita ufficiale o devo rivolgermi a qualche altro fornitore di grid ?
Grazie.
Stefano Paparesta
Reply
Can we use Janus Grid for .NET in Web Forms?
Reply
RE: Janus GridEX for .NET Pere [Spain] 09-Sep-2004 14:16:40
No, for web use Janus GridEX for .NET - .NET Component - V2.0
ReplyRE: RE: Janus GridEX for .NET pere[Spain] 09-Sep-2004 14:34:15
Sorry Janus Web GridEX for .NET - ASP.NET - V1.0
Reply
ComponentSource offers a unique global service, used by over 1,000,000 software developers worldwide.