The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
Hi,
How can i move rows in a data bound grid (bound to a DataSource) ? I have tried Model.Data.MoveRows without any luck. It is porbably because Model.Data is empty when grid is bound to a DataSource.
thanks
ADAdministrator Syncfusion Team June 20, 2005 08:46 AM UTC
You realy cannot ''move'' rows in GridDataBoundGrid. The reason is the grid only displays what is in your datasource. So, you would have to move the rows in your datasource.
You can display a sorted view on the data. So, you can use a sorted view to control the display order in a GridDataBoundGrid. Here is a KB link on this.
http://www.syncfusion.com/support/kb/grid/Default.aspx?ToDo=view&questId=98
ADAdministrator Syncfusion Team June 20, 2005 06:18 PM UTC
Addding a hidden column is a bit extra work. i guess removing row(s) from underlying Datasource is what i am looking for.
thanks for your help .