|
Re: Oracle Apex Dynamic actions in tabular form [message #635776 is a reply to message #635766] |
Wed, 08 April 2015 06:05 |
|
Littlefoot
Messages: 21823 Registered: June 2005 Location: Croatia, Europe
|
Senior Member Account Moderator |
|
|
I can't access the image; please, attach it to your next message.
If I understood you correctly, a "Condition" is what might help here. A tabular form is a result of a SELECT statement. The region contains certain fields. Open DAY_29 properties, scroll down to Conditional Display and set it to "PL/SQL Function Body returning a Boolean" as
return to_number(to_char(last_day(sysdate), 'dd')) >= 29; which means: display DAY_29 field if current month has 29 or more days. If SYSDATE isn't a date you're satisfied with, you can use a page item (the drop down list you mentioned).
|
|
|