似乎无法在数字字段上搜索APEX交互式网格。有解决方法吗?
答案 0 :(得分:0)
$("#P40_NEW_1").keyup(function(){
var searchText = $(this).val().toLowerCase();
// Show only matching TR, hide rest of them
$.each($(".a-GV-table tr"), function() {
if($(this).text().toLowerCase().indexOf(searchText) === -1)
$(this).hide();
else
$(this).show();
});
});
创建一个页面项目以进行搜索。
然后在按键上创建一个动态动作,并将此代码放入
。