Hi Yoab,
Greetings from the Syncfusion support,
As per your concern, we suggest you to use the actionComplete(it is triggered when succeeded the Grid action like paging, filtering,.. ) and actionFailure(It is fired when the Grid getting error) events of EJ2 Grid, you can achieve your requirement using both events in the EJ2 Grid in ASP .Net Core platform and we have already discussed about those events in our Help Documentation. Please refer the below code example, Help documentation for more information.
div>
<ejs-grid id="Grid" actionComplete="actionComplete" actionFailure="actionFailure" dataSource="ViewBag.DataSource" allowPaging="true">
<e-grid-columns>
. . . . .
</e-grid-columns>
</ejs-grid>
</div>
<script>
function actionComplete(args) {
if (args.requestType === refresh) {
// You code here while grid action is success to complete
}
}
function actionFailure(args) {
// You code here while Grid getting error
}
</script> |
Please get back to us, if you need further assistance.
Regards,
Balaji Sekar.