Half Sized Blog Element (Single Author Style)

Half Sized Blog Element (Multi Author Style)

, ,

SetSectionCellSpacing, SetSectionCellPadding methods for Sections

SetSectionCellSpacing, SetSectionCellPadding are two new methods which when used, will control the internal cell spacing and padding of a section on a form.   The generic way of calling both methods is: Code form.SetSectionCellSpacing(“Section Key”, “Size in Integer”); form.SetSectionCellPadding(“Section Key”, “Size in Integer”);   A prerequisite to use the above two methods is to add a […]

, ,

SetDataSource method for DataGrid

SetDataSource is a new method used to bind a DataGrid to an array of objects during runtime.   c_Control5 is our example datagrid. Code var c = form.GetControl(“c_Control5″).InputControl; var data = []; var item = new Object(); item.ID=”1”; item.Name = “John”; data.push(item); item = new Object(); item.ID=”2″; item.Name = “George”; data.push(item); c.SetDataSource(data);   Let’s analyze the […]

, ,

SetSectionCellSpacing, SetSectionCellPadding methods for Sections

SetSectionCellSpacing, SetSectionCellPadding are two new methods which when used, will control the internal cell spacing and padding of a section on a form.   The generic way of calling both methods is: Code form.SetSectionCellSpacing(“Section Key”, “Size in Integer”); form.SetSectionCellPadding(“Section Key”, “Size in Integer”);   A prerequisite to use the above two methods is to add a […]

, ,

SetDataSource method for DataGrid

SetDataSource is a new method used to bind a DataGrid to an array of objects during runtime.   c_Control5 is our example datagrid. Code var c = form.GetControl(“c_Control5″).InputControl; var data = []; var item = new Object(); item.ID=”1”; item.Name = “John”; data.push(item); item = new Object(); item.ID=”2″; item.Name = “George”; data.push(item); c.SetDataSource(data);   Let’s analyze the […]