1.Create your blocks B1, B2, B3, B4
2.Create block B0 and name it <%= myTabs(page )%>
3.Create function and put it into triggers - "PL/SQL procedure"
function myTabs(page varchar2 ) return varchar2 is
begin
return( '
<divid="tabs"><ul><li><ahref="#B1_DIV">Name block</a></li><li><ahref="#B2_DIV">Address block</a></li><li><ahref="#B3_DIV">Data block</a></li><li><ahref="#B4_DIV">Other data block</a></li></ul></div>
' );
end;
4.In "FORM_JS" put code:
$(function() {
$( "#DEMO_TABS_DIV" ).tabs();
});
5."Compile" and "Preview"
Last edit: Domen Dolar 2016-04-12
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
For creating blocks in tabs you have to:
1.Create your blocks B1, B2, B3, B4
2.Create block B0 and name it
<%= myTabs(page )%>
3.Create function and put it into triggers - "PL/SQL procedure"
4.In "FORM_JS" put code:
5."Compile" and "Preview"
Last edit: Domen Dolar 2016-04-12