V
Vimalkumar Selvaraj
Guest
Hi Meryem, We don't have direct client side API to find selected records. However you can use our client side SDK to get KendoGrid config and find out selected records. I wrote a script for you , You should use original Id of your list which you can get from Page designer $(document).bind(rb.newui.util.customEvents.rbs_recordsSelected,function(){ var pageComp = rbf_getPageComponent(88681); //List original Id, get from Page Designer if(pageComp){ var kendoConfig = pageComp.getKendoConfig(); // Get current Kendo Grid config if(kendoConfig){ var records = kendoConfig.dataSource.view(); // Get current Kendo grid page records for(var i=0;i 0){ //If row is selected console.log(record); } } } } }); Hope this helps, Thanks, Vimal.
Continue reading...
Continue reading...