Apex Interactive Grid如何检索特定记录

时间:2018-04-04 15:53:07

标签: oracle-apex oracle-apex-5.1

我正在使用以下方法检索网格数据:

var ig$ = apex.region("myGrid1").widget(),
                view = ig$.interactiveGrid("getCurrentView");

现在,我想基于2列检查特定记录:id1id2其中id1 = 1id2 = 7

我怎么能用javascript做到这一点?

1 个答案:

答案 0 :(得分:3)

您可以像这样迭代每条记录:

EscamboTokenInvalid = Class.new(StandardError)
rescue_from EscamboTokenInvalid, with: :escambo_unauthorized

def authenticate_member_from_token!
  unless Member.find_by_valid_token(:activate, request.headers['escambo_token'])
    raise EscamboTokenInvalid
  end
end

def escambo_unauthorized
  render nothing: true, status: :unauthorized
end

要测试此代码,请在控制台上执行。

要在chrome上启动控制台,只需按F12

祝你好运。