Oracle Form Builder: Navigate between tabs on a form

I create a form in oracle form builder

I have tabbed canvas

I need to know how to go to the next tab when a button is clicked

so what do i program in the button of the next tab?

+4
source share
1 answer

The best way is to go to an element in a new tab, for example.

GO_ITEM('BLOCK_NAME.ITEM_NAME'); 

OR you can make the tab at the top explicitly:

 SET_CANVAS_PROPERTY('CANVAS_NAME', TOPMOST_TAB_PAGE, 'TAB_PAGE_NAME'); 
+6
source

All Articles