by munnaonc
19. October 2006 21:26
Xceed Grid of 3.x Version has a very interesting feature Called Grouping. It allows you to show rows in groups and in a horizontal tree structure. Now let’s discuss about how to implement Xceed grid group feature. Well Xceed grouping feature works on columns that is you must group the rows on a particular column, but you can also use recursive grouping. To add grouping feature first you need to add a Group Object. And we need to set the property “GroupBy”. “GroupBy” property of Group object t...
[More]
by munnaonc
12. October 2006 21:24
In some cases we need to put a column with check box, so that we can select some row with check box. And then perform some operation depending on check box value. Xceed provide a very simple and easy way to accomplish this task. All you need to do is to add a column and set is data type to bool that’s it you are done. grid.Columns.Add( new Column( "CHECKBOX", typeof( bool ) ) ); grid.Columns["CHECKBOX"].Title = ""; grid.Columns["CHECKBOX"].W...
[More]
by munnaonc
11. October 2006 21:15
In version 3.1 Xceed provided lot of interesting stuff and one of them is Xceed editors. Some most interesting Xceed editors are Win Combo box Option Picker Let get started with how to define a custom cell editor. Let say we have one column that provide description of a data and the column is a multi line supported column. And we want to have custom editor for the description. First we need to define a cell editor control, for this case this will be a text area, which is a textbox with...
[More]
by munnaonc
10. October 2006 20:17
Dynamically Change Xceed Grid Column Title Some time we do require changing the column title at run time. During working one of my projects I was assigned a task where I need to add column dynamically and then change that is delete or rename the dynamically added columns. Since you can not edit the Xceed grid header by default the task is a little bit streaky. You can use context menu or direct edit in the header. For this you need to set some properties of the fixed header row of the Xcee...
[More]