Dynamic DataTable Problem

Dynamic DataTable Problem

im-interactiveim-interactive Posts: 2Questions: 0Answers: 0
edited July 2010 in General
First of all a very nice or i must say the best table plug-in so far in jquery, second of all pardon me about my english, i am having a little trouble in a scenario that i am working in, i have more then 50 Queries that is returning tabular data, i am using datatables which is replacing my gridview with datatables and it is looking nice all the functions of data tables are working fine, now the problem that i am having is some of the fields that the queries return are of numeric or currency type which needs some formatting like right alignment, and comma seperators, i have done the comma seperator thing but the sorting on those specific fields are not working in Internet Explorer while it is working fine in FireFox, here is the code, my GridView is autoGeneratedColumn and i am trying to format the data for every query.

[code]
$(document).ready(function() {
$('#GridView1').dataTable({
//"bJQueryUI": true,
"bLengthChange": false,
"sPaginationType": "full_numbers",
"iDisplayLength": 15,
"bAutoWidth":false,
"fnDrawCallback": function ( oSettings )
{
for (i=0;i

Replies

This discussion has been closed.