On April 27, 2024, our Sign-in and Create Account options will be unavailable from 9am-12pm ET. During this maintenance window, developer account access and free trial registration will be unavailable.

Text inside a Datagrid

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!!