Hi, I set the pageSize option on the grid, but I'm having a hard time because it's not shown on the screen.
So I can't see the page selection drop-down even though I deactivated all my csss and enabled only the css and js related to kendo.
What should I check to solve this problem?
I will attach my current screen and my grid creation code.
Help me...
$("#dataTable").kendoGrid({
sortable: true,
selectable: true,
groupable: false,
scrollable: true,
dataSource: {
data: [],
pageSize : 10
},
pageable: {
pageSizes: [10,50,100]
},
columns: [
{ title: "No", attributes:{style: "text-align: center"}, template: "#= renderNumber(data) #", width: "50px"},
{ field: "id", title: "SEQ", width: "130px", hidden:true},
{ field: "registDt", title: "일시", width: "160px", attributes:{style: "text-align: center"}, template: '#=registDt==null?" ":new Date(registDt).getDateTime()#' },
],
//dataBound: resetRowNumber,
});