Setting AllowGroupBy.No on selected columns has no effect. I can still drag and group the disabled columns.
Hi
I have used the same propertly to disable grouping on few selected columns. Could you let me know at which point you have set this property.
Best Regards,
Vijay
Hi,
The grid is created as part of compisite control CreateChildControls override soon after a column is created as follows:
var col = new UltraGridColumn { Key = "ActualSize", BaseColumnName = "ACTUAL_SIZE", HeaderText = "Actual Size", DataType = "System.Decimal", Width = Unit.Pixel(100), CellStyle = { HorizontalAlign = HorizontalAlign.Right, Padding = { Right = Unit.Pixel(20) } }, HeaderStyle = { HorizontalAlign = HorizontalAlign.Right, Padding = { Right = Unit.Pixel(20) } }, AllowGroupBy = AllowGroupBy.No};
Thanks for the response
Babu