甲骨文APEX和数字字段搜索IG

问题描述 投票:0回答:1

看来,APEX互动电网不能在数字字段进行搜索。是否有变通?

oracle oracle-apex oracle-apex-5.1
1个回答
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();                
    });
}); 

创建搜索页面项目。

然后创建击的动力作用,并把这个代码。

© www.soinside.com 2019 - 2024. All rights reserved.