javascript - Kendo UI grid - How can I show a processing / loading percent indicator -


is there way show processing percentage or progress bar show loading progress user in kendo grid. kindly share. -philip-

take @ databinding , databound event of kendo.ui.grid. pseudo code

$("#grid").kendogrid({     databinding: function(e) {         //show processing modal         console.log("databinding");     },     databound: function(e) {         //hide processing modal         console.log("databound");     } }); 

Comments

Popular posts from this blog

C++: Boost interprocess memory mapped file error -

python - IO.UnsupportedOperation: Not Writable -

python - Selecting distinct values from a column in Peewee -