php - prevent popup-box to open in kendo grid -


i want stop opening popup-boxes in cases. mean on specific condition should open , shouldn't in kendo grid. using javascript , jquery this. using js 1.7.1 of kendo.

$('.k-grid-add').on("click", function () { if(val==-1) {                 alert('please select agent'); //here want prevent popup-box }  }); 

use return false;

$('.k-grid-add').on("click", function (e) { if(val==-1) {   alert('please select agent');   return false; } }); 

Comments

Popular posts from this blog

basic authentication with http post params android -

vb.net - Virtual Keyboard commands -

c++ - End of file on pipe magic during open -