You can hide the 'Select' text by setting the text size to 0 for the concerned table header style (using display:none will not work, as it will cause the table headers to display over the incorrect column).
Here is the Table as default:
<th scope="col" width="1%" nowrap class="x2z">Välj</th>
Now you can alter the af:tableSelectMany by changing the code in the page to:
<f:facet name="selection">
<af:tableSelectMany text="Test">
<f:verbatim>
<style type="text/css">
th.x2z{font-size: 0};
</style>
</f:verbatim>
</af:tableSelectMany>
</f:facet>
This will result in the following table:
Now the "Select" (or "Välj") test is set to 0 size, thus will not be displayed.
Inga kommentarer:
Skicka en kommentar