AD
Administrator
Syncfusion Team
July 15, 2005 11:25 AM UTC
1)
http://www.syncfusion.com/support/kb/grid/Default.aspx?ToDo=view&questId=94
http://www.syncfusion.com/support/kb/grid/Default.aspx?ToDo=view&questId=92
2)
http://www.syncfusion.com/support/kb/grid/Default.aspx?ToDo=view&questId=91
http://www.syncfusion.com/support/kb/grid/Default.aspx
http://www.syncfusion.com/support/kb/grid/Default.aspx?ToDo=view&questId=85
3)If you use dataAdapter.Fill to load teh data from your database, then you would call dataAdapter.Update to save the data.
4)If you are using a Datatable, you cannot insert a row. You can add a row at the end of the table ( and it would be automatically positioned in the sorted state). To add a row, you can use:
DataRow dr = dataTable1.NewRow();
//set values into dr
dataTable1.Rows.Add(dr);