Positionning and Paging

Positionning and Paging

Kris-IKris-I Posts: 12Questions: 2Answers: 0
edited September 2011 in General
Hello,

With this code below, I get this result : http://i54.tinypic.com/2ias9jq.png
I'd like something like this : http://goo.gl/4WUbn

I'd like :
- The search box on the right
- The paging in the bottom right
- The dropdown to select the number of row to display by page
- A color for even and another for odd row

Thanks a lot,

[code]
$('#GroupList').dataTable({
"bPaginate": false,
"bLengthChange": false,
"bFilter": true,
"bSort": true,
"bInfo": false,
"bAutoWidth": false,
"bJQueryUI": true,
"sPaginationType": "full_numbers",

"sDom": '<"H"Tfr>t<"F"ip>',
"oTableTools": {
"sSwfPath": "/Content/swf/copy_cvs_xls_pdf.swf",
"aButtons": [
"xls", "pdf"
]
},

"aoColumns": [
{ "bSortable": false },
{ "bSortable": false },
{ "bSortable": false },
{ "bSortable": true },
{ "bSortable": true },
{ "bSortable": true },
{ "bSortable": true },
{ "bSortable": true },
{ "bSortable": false }
],
"fnInitComplete": function () {

}
});
[/code]
This discussion has been closed.