I need the functionality to highlight the edited row in a gridview, so on RowDataBound of the gridview i check which one's the one that has been edited and change the css style. There is one small problem, the change could make the row appear on a different page. How do i get the PageIndex from the row to jump to that page ?
|
|
|
||||
|
|
|
Look here: http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.gridview.pageindex.aspx The property PageIndex lets you get or set the index of the currently displayed page. |
||
|
|
|
|
When you are editing the selected row, you are obviously going to need some unique identifier to save your change back to the data store. Save that identifier to a local variable. Then when you are looking at each row in the OnRowDataBound event, compare its unique identifier to the currently saved value. If it's the same, you've found your row. |
||
|
|
|
I would add an extra column that contains RowNumber. If you are using MSSQL it is easy as
and find the changed row int DataTable.Rows using DataTable.Rows.Select that matches all column values(if you have an unique column sure you can use that, if you don't you have no luck! you could get more than one row soo choose one! if uniqueness is not soo important that doesn't make any sense) and get RowNumber value which is also the column you added to the table by using ROW_NUMBER() TSQL function. And the rest is math;
EDIT: 1- I assume you querying database for each roundtrip the page 2- ROW_NUMBER() should work Oracle and MySql i beleive or has equal operator that i know of... |
|||
|
|
