Hello,
i use the OnToolbarClick event to get the current page or get the slected rows.
I need the currentData of all Pages!?
this.model.currentData is not working ?
function OnToolbarClick(args)
{
if (args.itemName.indexOf("Export") > -1)
{
this.model["currentData"] = JSON.stringify(this.model.selectedRecords.length == 0 ? this.model.currentViewData : this.model.selectedRecords); /
}
}
</script>