Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Tabular form hide column

SnoeskyFeb 28 2013 — edited Feb 28 2013
I'm using APEX 4.2

I have a simple tabular form based on EMP made thru the wizard.
I want the SAL columns not to be shown when i double click in the column Ename.

The dynamic action contains the following javascript:

var V_label = $("#SAL");
var V_col = $('td[headers="SAL"] input');

V_label.css('display', 'none');
V_label.css('display', 'none');


The label "Sal" is nicely removed from the header and the labels on the right side are moved to the left as i expected. But however the SAL column is no longer displayed it keeps the space occupied.

Can anybody please give me a hand? Seems to me that it is standard practice to want some columns not to be shown.


Regards,
Snoesky
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Mar 28 2013
Added on Feb 28 2013
6 comments
1,145 views