在某些情况下,我想停止打开弹出框。我的意思是在特定条件下我应该打开,有时它不应该在 Kendo Grid 中打开。我为此使用 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
}
});
在某些情况下,我想停止打开弹出框。我的意思是在特定条件下我应该打开,有时它不应该在 Kendo Grid 中打开。我为此使用 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
}
});
利用return false;
$('.k-grid-Add').on("click", function (e) {
if(val==-1)
{
alert('Please select agent');
return false;
}
});
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");
});
});