$("#Grid").ejGrid({
dataSource: dataManager,
allowSearching: true,
isResponsive: true,
enableResponsiveRow: true,
query: query,
allowScrolling: true,
allowResizeToFit: true,
//allowPaging: true,
scrollSettings: { allowVirtualScrolling: true, virtualScrollMode: "continuous", enableTouchScroll: true, width : 500, height : 300 },
columns: [
{
headerText: "Show",
commands: [
{ type: "details", buttonOptions: { contentType: "imageonly", width: "30", height: "30", prefixIcon: "e-uiLight e-handup", click: "onClick" } }
],
textAlign: ej.TextAlign.Center,
headerTextAlign: "center",
width: 100
},
--------------------------
] |