hideShow in table column in uix page
580049Nov 19 2007 — edited Nov 22 2007Hi EveryBody,
I am usin JDeveloper 9051+ adf+uix.
In that i'm trying to put a <hide show /> component in a column.
Hide and show is running but it does work for all the rows at a time since id of each <hideshow/> is same (i mean to say that all hideshows work at the same time) and i want it to work for the particular row in which the hide show is pressed.
This is my code snippet kindly help in this:
<hideShow id="hideshow1" disclosed="${'show'==uix.pageState.hideshow1}">
<contents>
<flowLayout>
<contents>
<labeledFieldLayout>
<contents>
<textInput model="${uix.current.Asset.KeyId}" columns="10" readOnly="true"/>
</contents>
</labeledFieldLayout>
<labeledFieldLayout>
<contents>
<textInput model="${uix.current.Asset.Description}" columns="10" readOnly="true"/>
</contents>
</labeledFieldLayout>
<labeledFieldLayout>
<contents>
<textInput model="${uix.current.Asset.Image}" columns="10" readOnly="true"/>
</contents>
</labeledFieldLayout>
<labeledFieldLayout>
<contents>
<textInput model="${uix.current.Asset.ShortDescription}" columns="10" readOnly="true"/>
</contents>
</labeledFieldLayout>
</contents>
</flowLayout>
</contents>
</hideShow>
<handlers>
<event name="hide show">
<set target="${uix.pageState}" property="${param.source}" value="${param.event}" />
</event>
</handlers>
Thanks in advance.