"aaSorting" is not working properly in IE8
"aaSorting" is not working properly in IE8
santoshhk1
Posts: 12Questions: 0Answers: 0
Hi,
Plz help me.
i have used is like
"aaSorting": [[2, 'asc']]
but is it showing some records not in sorted order(IE8)
It works fine in Firefox.
Plz help me.
i have used is like
"aaSorting": [[2, 'asc']]
but is it showing some records not in sorted order(IE8)
It works fine in Firefox.
This discussion has been closed.
Replies
//-------------------apply DataTable plunin-------------
dm.page.land.vCampTbl = $('#tblCampaign').dataTable({
"iDisplayLength": 15,
"bProcessing": false,
"bFilter": false,
"oStdClasses": false,
"bLengthChange": false,
"dataTables_info": false,
"bRetrieve": true,
"bDestory": true,
"sInfo": false,
"aaSorting": [[2, 'asc']], // Default sorting parameter
"aoColumns": [
{ "bSortable": false },
{ "bSortable": false },
null,
{ sType: 'html-numeric' }, //Messages //To sort by numeric data //TODO:Sorting with , and % symbols..
{sType: 'html-numeric' }, //Total send
{sType: 'html-numeric' }, //Delivary
{sType: 'html-numeric' }, //Open
{sType: 'html-numeric' }, //Click
null, //Campaign owner
null, //Creation date
null, //Expiry date
null, //status
{sType: 'html-numeric' },
{sType: 'html-numeric' },
{sType: 'html-numeric'}
],
"sPaginationType": "full_numbers"
});
yes some special char data may be in database table.i don't have any option to change data in database.
i think there may be some spaces chars before values in that column.
but i used $trim() also,but it is not working.
please help
Allan