Sorting with a hyperlink
Sorting with a hyperlink
Hi guys,
I'm trying to use datatables with asp.net. I have a link button places inside each "". When it comes to sorting the data it goes horribly wrong and does, 1, 10,11,12,13,14,15 etc..
Is there a way i can configure the datatable to sort by the text stored in the button link?
here's my code,thanks!!
<%# Eval("Number") %>
Internet
Explorer 4.0
Win 95+
4
X
I'm trying to use datatables with asp.net. I have a link button places inside each "". When it comes to sorting the data it goes horribly wrong and does, 1, 10,11,12,13,14,15 etc..
Is there a way i can configure the datatable to sort by the text stored in the button link?
here's my code,thanks!!
<%# Eval("Number") %>
Internet
Explorer 4.0
Win 95+
4
X
This discussion has been closed.
Replies
regards,
vivek
$(document).ready(function() {
$('#example').dataTable();
});
[code]$(document).ready(function() {
var oTable = $('#example').dataTable();
$('#buttonId').click(function(){
oTable.fnSort(columnNo);
});
}); [/code]
Allan