I'm using Telerik Windows Forms 2010 Q1.
I have a desktop application that have some functions, one of them is freezing rows and columns for user to check and compare data.
I used pin feature in gridview. But got some unconvenience as followed:
When I pinned some rows (or just one row) then refreshed the grid (reload data from database and rebind to grid), this encountered an error.
I put a try ... catch and found out the error: Column 'COLUMN_NAME' does not belong to table, with table here is datasource.
To fix this, I put an iteration that unpin all currently pinned rows right before the datasource assignment. But it's my solution for the ease of my work.
Would you tell me if there is any other solutions for that matter or Telerik Windows Forms GridView has supported this (pin rows) internally?
I have a desktop application that have some functions, one of them is freezing rows and columns for user to check and compare data.
I used pin feature in gridview. But got some unconvenience as followed:
When I pinned some rows (or just one row) then refreshed the grid (reload data from database and rebind to grid), this encountered an error.
I put a try ... catch and found out the error: Column 'COLUMN_NAME' does not belong to table, with table here is datasource.
To fix this, I put an iteration that unpin all currently pinned rows right before the datasource assignment. But it's my solution for the ease of my work.
Would you tell me if there is any other solutions for that matter or Telerik Windows Forms GridView has supported this (pin rows) internally?