Rank: Advanced Member Groups: Member
Joined: 9/14/2009 Posts: 29
|
Does anyone know if you can combine record append functionality with fixed bottom items in a grid control?
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
You should be able to just use them together. The key is the bottom items should always be last rows in your data source. For example, if you are binding the Grid to a DataTable, the bottom rows should be the last rows in your DataTable. This means when user appends a new item, it actually should be inserted into the DataTable before the bottom rows.
Thanks!
|
Rank: Advanced Member Groups: Member
Joined: 9/14/2009 Posts: 29
|
Hi,
Interesting approach...I'll give it a try.
Thanks very much!
|