We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

GGC Properties similar to DataBoundGrid

Hi all, in DataBoundGrid are some helpful properties like: this.Grid.Model.Options.DisplayEmptyColumns = true; this.Grid.Model.Options.DisplayEmptyRows = true; this.Grid.ActivateCurrentCellBehavior = GridCellActivateAction.SelectAll; this.Grid.WantTabKey = true; this.Grid.WantEnterKey = true; this.Grid..Model.Options.EnterKeyBehavior = GridDirectionType.Down; this.Grid.Model.Options.WrapCellBehavior = GridWrapCellBehavior.WrapGrid; where can i find the same or similar properties in GGC ? Thanks Kai

2 Replies

AD Administrator Syncfusion Team July 12, 2006 01:14 PM UTC

Most of these properties/functionalities are not implemented in the GridGroupingControl. You can get at lot of these properties (through their being inherited from GridControlBase) through: this.gridGroupingControl1.TableModel.Options But, most of these properties are ignored in the derived GridGroupingControl. This is because the support for nested tables makes simple navigation like wrapping rows and moving up an ddown between row more complex as the item under the current row may not belong to the same record collection as the current item, and there is no guarantee that there is some coresponding cell under a current cell. The ActivateCurrentCellBehavior property should work (but you would have to set it recursively for each nested table if you are nesting tables and want the support at each table).


KA Kai Abesser July 12, 2006 02:22 PM UTC

good to know thank you kai

Loader.
Live Chat Icon For mobile
Up arrow icon