Reputation: 479
I want use BootstrapTable extension but not config pagination.
$('#table').bootstrapTable({
data: data,
oprions :
{
pagination: true,
pageNumber: 2,
pageSize: 3,
pageList: [2, 25, 50, 100]
}
});
Options just not apply http://jsfiddle.net/3ev13xoc/ Why?
Upvotes: 0
Views: 432
Reputation: 221
Your table options should come during your bootstrapTable
declaration and without the object you have it in so it looks like this:
$(function () {
$('#table').bootstrapTable({
data: data,
pagination: true,
pageNumber: 2,
pageSize: 3,
pageList: [2, 25, 50, 100]
});
});
Upvotes: 1