Hi,
What would be the server side equivalent for set_currentPageIndex() if there is any ?
Something like :
Thank You
Arnaud
What would be the server side equivalent for set_currentPageIndex() if there is any ?
Something like :
| Protected Sub RadListView1_PreRender(ByVal sender As Object, ByVal e As EventArgs) Handles RadListView1.PreRender |
| For Each item As RadListViewDataItem In RadListView1.Items |
| Dim customerID As String = item.GetDataKeyValue("id_inscrit").ToString() |
| If customerID = Request.QueryString("id_inscrit") Then |
| 'RadListView1.???? -> Go to the choosen page |
| End If |
| Next |
| RadListView1.Rebind() |
| End Sub |
Thank You
Arnaud