DBA Data[Home] [Help]

APPS.ICXUI_API_DIALOG dependencies on ICXUI_API_UTIL

Line 43: icxui_api_util.draw_title(p_title => title);

39: --
40: -- Call Draw Title
41: --
42: htp.tableRowOpen;
43: icxui_api_util.draw_title(p_title => title);
44:
45: htp.tableRowClose;
46:
47: --

Line 61: icxui_api_util.draw_image(p_image => dialog_image);

57: -- Draw the image bit
58: --
59: htp.tableRowOpen;
60: if dialog_image is not null then
61: icxui_api_util.draw_image(p_image => dialog_image);
62: end if;
63:
64: --
65: -- Call Draw Button Bar

Line 68: icxui_api_util.draw_buttons(p_buttons => buttons);

64: --
65: -- Call Draw Button Bar
66: --
67: if buttons is not null then
68: icxui_api_util.draw_buttons(p_buttons => buttons);
69: end if;
70: htp.tableRowClose;
71:
72: --

Line 77: icxui_api_util.draw_path_text(p_path_text => path_text);

73: -- Call to Draw the Path Text
74: --
75: if path_text is not null then
76: htp.tableRowOpen;
77: icxui_api_util.draw_path_text(p_path_text => path_text);
78: htp.tableRowClose;
79: end if;
80:
81: htp.tableClose;

Line 91: icxui_api_util.draw_subheader(p_subheader_text => subheader_text);

87: -- Call Draw Sub Header Text
88: --
89: if subheader_text is not null then
90: htp.tableRowOpen;
91: icxui_api_util.draw_subheader(p_subheader_text => subheader_text);
92: htp.tableRowClose;
93: end if;
94:
95: --

Line 100: icxui_api_util.draw_helptext(p_help_text => help_text);

96: -- Call Draw Help Text
97: --
98: if help_text is not null then
99: htp.tableRowOpen;
100: icxui_api_util.draw_helptext(p_help_text => help_text);
101: htp.tableRowClose;
102: end if;
103:
104: --

Line 142: icxui_api_util.draw_footer;

138: --
139: -- ROW 5 : Draw the Bottom bar of the Wizard
140: --
141: htp.tableRowOpen;
142: icxui_api_util.draw_footer;
143: htp.tableRowClose;
144:
145: htp.tableClose;
146: end close_dialog;