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