hi I need use pagination in ui-table
and use this to UI-control node but not happen anything
{
"Tabulator": {
"layout": "fitColumns",
"responsiveLayout": "hide",
"tooltips": true,
"addRowPos": "top",
"history": true,
"pagination": "local",
"paginationSize": 7,
"movableColumns": true,
"resizableRows": true,
"initialSort": [
{
"column": "name",
"dir": "asc"
}
],
"columns": [
{
"title": "Name",
"field": "name",
"editor": "input"
},
{
"title": "Task Progress",
"field": "progress",
"hozAlign": "left",
"formatter": "progress",
"editor": true
},
{
"title": "Gender",
"field": "gender",
"width": 95,
"editor": "select",
"editorParams": {
"values": [
"male",
"female"
]
}
},
{
"title": "Rating",
"field": "rating",
"formatter": "star",
"hozAlign": "center",
"width": 100,
"editor": true
},
{
"title": "Color",
"field": "col",
"width": 130,
"editor": "input"
},
{
"title": "Date Of Birth",
"field": "dob",
"width": 130,
"sorter": "date",
"hozAlign": "center"
},
{
"title": "Driver",
"field": "car",
"width": 90,
"hozAlign": "center",
"formatter": "tickCross",
"sorter": "boolean",
"editor": true
}
]
}
}
so ui-table support tabulator pagination if yes how use it