0

在某些情况下,我想停止打开弹出框。我的意思是在特定条件下我应该打开,有时它不应该在 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
}

});
4

2 回答 2

0

利用return false;

$('.k-grid-Add').on("click", function (e) {
if(val==-1)
{
  alert('Please select agent');
  return false;
}
});
于 2013-07-31T05:57:29.167 回答
-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");
   });
});
于 2015-06-12T13:41:00.600 回答