jqGrid 非默认锚点上的搜索功能
我有一个名为 [Filter] 的按钮,我试图在单击时调用网格搜索模式。我尚未找到搜索按钮内联使用的调用。
它使用 类作为搜索图标/按钮。
所以像
$('.filter').live('click', function (event) {
$('ui-icon-search').trigger('click');
});
编辑这样的东西,找到了它。
$('.filter-grid').live('点击', 函数(事件) { $("#search_products").click(); });
在单击时调用父级 div id,而不是跨度。
I have a button named [Filter] that I'm trying to call the grid search modal on click. I have yet been able to find the call that the search button uses inline.
It uses <span class="ui-icon ui-icon-search"></span>
classes for the search icon/button.
So something like
$('.filter').live('click', function (event) {
$('ui-icon-search').trigger('click');
});
Edit, found it.
$('.filter-grid').live('click', function (event) {
$("#search_products").click();
});
Was calling the parent div id on click and not the span.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
找到了。
$('.filter-grid').live('click', function (event) { $("#search_products").click(); });
正在调用父 div id单击而不是跨度。
Found it.
$('.filter-grid').live('click', function (event) { $("#search_products").click(); });
Was calling the parent div id on click and not the span.