var row = igtbl_getRowById(rowId);
Any ideas?
Thanks
Hello,
DefaultValue cannot be set declaratively in the ASPX or in the designer because it is of type object - there is no way you can tell at design time what value gets there (it is a generic object) so the only way to specify it is programmatically. The code samples above seem pretty good to me, InitializeLayout is a great event to place such code there.You can set DefaultValue per column in UltraWebGrid1_InitializeLayout event usinge.Layout.Bands(0).Columns.FromKey("JobID").DefaultValue = ...