tabular-form

Update Apex Tabular form with PLSQL

依然范特西╮ 提交于 2019-12-08 17:41:28
问题 How can I update an Apex Tabular Form with pl/sql instead of using a multi-row update(MRU), is it even possible? Thanks in advance. 回答1: Yes, it is possible. You can delete (or disable) the standard processes such as ApplyMRU, and replace them with your own PL/SQL processes to handle the tabular form arrays something like this: for i in 1..apex_application.g_f02.count loop update dept set dname = apex_application.g_f03(i) where deptno = apex_application.g_f02(i); end loop; However, it isn't

Oracle APEX | Validate Tabular form Row by Row

ぐ巨炮叔叔 提交于 2019-12-08 11:48:13
问题 I have tabular form to add order details for an order, Tabular form has Popup LOV with this custom attribute: onchange="javascript:do_cascade(this);" here is the code of the last function function do_cascade(pThis) { var row_id=pThis.id.substr(4); apex.server.process("cascade_order_values", { x02: $(pThis).val()}, {type:"GET", dataType:"json", success:function(json) { var cond=0; // this var as flag changes to 1 when the new value found in tabular form. var l_code=$(pThis).val(); // to catch