Hi, I tried a lot of functions as you see here in my grid :
var grid = new ej.grids.Grid({
actionComplete: onActionComplete,
dataSource: data,
dataBound: dataBound,
actionComlete: actionComlete,
created: created,
toolbar: ['Search'],
allowPaging: true,
rowSelected: rowSelected,
actionBegin: onActionBegin,
gridLines: 'Both',
height: '200',
width: "100%",
pageSettings: {
currentPage: 1.0,
pageCount: 8.0,
pageSize: 5.0
}
});
But no one achieves my requirement.
Is there a way to trigger a function when no rows or no data in the grid?
Could you please help me with this? I would like to know which event to use.