我想在某些情况下停止打开弹出框。我的意思是在特定条件下我应该打开,有时它不应该在剑道网格中。我正在使用javascript和jquery。我正在使用js 1.7.1的剑道。
$('.k-grid-Add').on("click", function () {
if(val==-1)
{
alert('Please select agent');
//here i want to prevent popup-box
}
});
答案 0 :(得分:0)
使用return false;
$('.k-grid-Add').on("click", function (e) {
if(val==-1)
{
alert('Please select agent');
return false;
}
});
答案 1 :(得分:-1)
grid.find("div.k-grid-header").find("div").find("table thead tr").find('th').each(function () {
$(this).find('.k-filter').click(function () {
$(this).css("display","none");
});
});