oracle - How to reference a page-item from a tab -


i have oracle apex 5.0.3.

i want hide/show tab condition referencing page-item: :p1_xxx = 1

is possible, page-items not visible tab-condition?

the tab not shown condition :p1_xxx = 1 , condition :p1_xxx = 0

the content of p1_xxx 1.

thank much!!

oradev2015

yes can still include item in condition if hidden. have tried pl/sql function body type of condition? if not try it. in pl/sql section of condition, enter following codes:

  if :p1_xxx = 1 or :p1_xxx = 0       return false;   else        return true;   end if; 

Comments

Popular posts from this blog

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -