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

get url and add instance to a model with prefilled foreign key :django admin -

css - Make div keyboard-scrollable in jQuery Mobile? -

ruby on rails - Seeing duplicate requests handled with Unicorn -