Hello!
I have a databound Datagrid with a DatagridRow:
<dmf:datagridRow cssclass="contentBackground">
<td>
<dmf:label datafield="name" cssclass="defaultDocbaseAttributeStyle"/>
</td>
<td>
<dmf:text name="xxxx" datafield="value"/>
</td>
</dmf:datagridRow>
What i want now is, to set some <dmf:text/> elements to be invisible.
Therefore in my code i iterate over grid.getContainedControls() and then i set setVisible(false) for
the control i want to be invisible. But it is always visible!! What am i doing wrong?
I have Webtop 6.5.
Please help!!