Hello
It is a very simple question but I can not find a solution. My Apex version is 23.2.
I have on the Interactive Grid a Button and in the DA I would like to open an other (for example IMPORT-Page as Dialog)
var importPageURL = apex.page.get_url({ p_page : 9901
, p_items : null /*'p80_step_id,p80_node_type'*/
, p_values : null /*:p72_node_id || ',' || :p72_node_type*/
, p_plain_url : true
});
apex.navigation.dialog
( importPageURL
,
{ title: 'Dialog-Titel'
, modal: true
, height: '400'
, width: '600'
}
, 'POPUP'
, $('#id_action_button_import')
);
I get the error message: apx.page.get_url does not exist… OK. But I would like to create the friendly URl not this complicated with PREPARE_URL.
Could you help me? Thanks.