Skip to Main Content

Java Development Tools

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

hideShow in table column in uix page

580049Nov 19 2007 — edited Nov 22 2007
Hi 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.
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Dec 20 2007
Added on Nov 19 2007
18 comments
1,087 views