Oracle APEX 和在数值字段上搜索 IG



似乎无法在数值字段上搜索 APEX 交互式网格。有解决方法吗?

$("#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();                
    });
}); 

更改页面项以进行搜索。

然后在按键上创建一个动态动作并输入此代码。

最新更新