parameters

parameters

lijochackolijochacko Posts: 1Questions: 0Answers: 0
edited April 2014 in General
hai,

i am print the data table ajax source request in local controller
[sEcho] => 1
[iColumns] => 3
[sColumns] =>
[iDisplayStart] => 0
[iDisplayLength] => 20
[mDataProp_0] => 0
[mDataProp_1] => 1
[mDataProp_2] => 2
[iSortingCols] => 0
[bSortable_0] => true
[bSortable_1] => true
[bSortable_2] => true
[_] => 1396352185555
[con] => 13
[cat] => category
[cname] => country


but the same ajax source print in server

[/site/functionname/con/13/cat/category/cname/country] =>
[__unam] => 655f768-144fe2fdab5-468e9499-16
[con] => 13
[cat] => category
[cname] => country


i don't receive the datatable parameters like iDisplayLength, iDisplayStart in my server,

i don't know what is the reason

i am using the method

oTable = jQuery('#examplequick').dataTable({

"bJQueryUI": true,

"aaSorting": [],
"bFilter" : false,
"bLengthChange": false,
"sPaginationType": "full_numbers",
"iDisplayLength": 20,
"bServerSide": true,

"aoColumns": [ { "bSortable": true },{ "bSortable": true },{ "bSortable": true }],

"sAjaxSource": "<?php echo yii::app()->createUrl('controller/function'); ?>" + "/" +"con"+ "/" +cid+ "/" +"cat"+ "/" +kid+"/"+"cname"+"/"+contry_name,


});

what is the reason for not receiving iDisplayLength, iDisplayStart etc.... in server
This discussion has been closed.