M
Mohammed Siraj
Guest
Ideally you should configure 'Lignes Facture' list view to include 'Total By'. That way you need not have to add it independently and have the need to update it on inline edit. However, if required, you can listen for the 'Save' event: rbf_getPageComponent('176777').getKendoConfig().bind("save", function(){ alert('About to save...'); }); Here '176777' is the original cell Id for the Lignes Facture list view, that you can retreive from 'Design the page'. On save, you can choose to refresh the whole page. function onSaveHandler(){ window.location.reload(); }
Continue reading...
Continue reading...