Quantcast
Viewing all articles
Browse latest Browse all 82152

add/change parameter

I'd like to add parameter to DataTable object.

initially...
var oTable = jQuery("#table_id").dataTable({
	"bServerSide": true,
	"bPaginate": false,
}

then I'd like to add/change parameter
	"bPaginate": true,
	"aaSorting":[[1, "asc" ]],

to make object in the below.
jQuery("#table_id").dataTable({
	"bServerSide": true,
	"bPaginate": true,
	"aaSorting":[[1, "asc" ]],
}

What should I do....

Thank everyone in advance!

Viewing all articles
Browse latest Browse all 82152

Trending Articles