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!

Interactive report column width

DooliusApr 15 2014 — edited Apr 16 2014

APEX: 4.0.2

THEME: SAND

SERVER: Oracle-Application-Server-10g/10.1.3.1.0 Oracle-HTTP-Server

I'm wondering if there is:

1. A different way to adjust a column's width other than using

<span style="display:block; width:250px">Description</span>

or

2. A way to change the display name in the "filter" option.

The problem I'm having is when I use the above style to adjust the column width, in the filter/serch drop down it shows up as

<span style="display:block; width:250px">Description</span>

  and the users don't like that.

I found the below javascript but haven't tried it yet. I would rather not have to do it this way because there are about 60 columns in my report.

<script type="text/JavaScript">

$x('apexir_S_SET_UNTS').style.width = "65px";

$x('apexir_A_SET_UNTS').style.width = "65px";

$x('apexir_B_SET_UNTS').style.width = "65px";

$x('apexir_C_SET_UNTS').style.width = "65px";

$x('apexir_D_SET_UNTS').style.width = "65px";

$x('apexir_E_SET_UNTS').style.width = "65px";

$x('apexir_F_SET_UNTS').style.width = "65px";

$x('apexir_TTL SET UNTS').style.width = "80px";

< /script>

Thanks

Steven

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on May 14 2014
Added on Apr 15 2014
7 comments
1,972 views