|
|
-
Hima Commented 2 Years ago through Ask | 10 Points
Sorting all data in gridview is logically wrong, you need to sort based on pages.
It will be confusing for the end user point of view if it performs unobtrusive sorting...
|
-
Hima Replied 2 Years ago through ASK | 1 Point
Work around is mentioned [here][1]
Please go through this. Hope this helps.
[1]: http://www.highoncoding.com/Articles/705_Sorting_GridView_Using_JQuery_tableSorter_Plug_in.aspx...
|
0
·
0% ·
0
|
|
-
Hima Commented 2 Years ago through Ask | 10 Points
Work around is mentioned [here][1]
Please go through this. Hope this helps.
[1]: http://www.highoncoding.com/Articles/705_Sorting_GridView_Using_JQuery_tableSorter_Plug_in.aspx...
|
-
JacobSebastian Received Vote Up 2 Years ago through ASK | 1 Point
Work around is mentioned [here][1]
Please go through this. Hope this helps.
[1]: http://www.highoncoding.com/Articles/705_Sorting_GridView_Using_JQuery_tableSorter_Plug_in.aspx...
|
-
ajib4u Received Vote Up 2 Years ago through ASK | 1 Point
Work around is mentioned [here][1]
Please go through this. Hope this helps.
[1]: http://www.highoncoding.com/Articles/705_Sorting_GridView_Using_JQuery_tableSorter_Plug_in.aspx...
|
-
ajib4u Question Received 2 Years ago through ASK | 1 Point
I have implemented the jquery sorting in gridview. But the problem is that , i have paging in gridview. when we click on header, pager td will go on the first row of the gridview. Any solution for this? I want the pager is still bottom of the grid....
|
-
Hima Replied 2 Years ago through ASK | 1 Point
Actually you need to have a hidden variable with id hdnMsgValue in aspx page otherwise it gives error....
|
0
·
0% ·
0
|
|
-
Hima Commented 2 Years ago through Ask | 10 Points
Actually you need to have a hidden variable with id hdnMsgValue in aspx page otherwise it gives error....
|
-
Pawan Question Received 2 Years ago through ASK | 1 Point
I tried your code.
But it gave me error:The name 'hdnMsgValue' does not exist in the current context
helper: function(event)
Line 37: {
Line 38: **$('#" + hdnMsgValue.ClientID ...
|
-
Hima Replied 2 Years ago through ASK | 1 Point
If I understood your question correctly, You are trying to get grid row using jQuery.
You can get row data in html table using JQuery
$(document).ready(function()
{
$("table[id$='tblDisplay'] td:nth-child(1)").live('click',fu...
|
0
·
0% ·
0
|
|