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++ - llvm function pass ReplaceInstWithInst malloc -

java.lang.NoClassDefFoundError When Creating New Android Project -

Decoding a Python 2 `tempfile` with python-future -