Skip to content

Instantly share code, notes, and snippets.

@ujnak
Created December 12, 2022 23:15
従業員番号をページ・アイテムに設定する。
/*
* 引数empnoに渡された従業員番号をページ・アイテムP1_EMPNOに設定する。
*/
const SET_EMPNO = {
name: "setempno",
action: function(event, element, args) {
apex.item("P1_EMPNO").setValue(args.empno);
}
};
// apex.actions.addへ渡す。
const PAGE_ACTIONS_EMPCARD = [ SET_EMPNO ];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment