
I have one problem where i need to display each person information in popup ,when i click on corresponding image
Here i shown the image with the help of iterator,bellow i have giving the code
<af:forEach var="master" varStatus="vs" end="#{bindings.PmpEmployeeMstrView1.estimatedRowCount/3}"
items="#{bindings.PmpEmployeeMstrView1.rangeSet}">
\<af:panelGroupLayout id="pgl3" layout="horizontal" valign="top">
\<af:iterator id="i2" value="#{bindings.PmpEmployeeMstrView1.collectionModel}" rows="3"
first="#{vs.index\*3}" var="m">
\<af:link id="it3"
inlineStyle="width:50px; height:50px; margin-bottom:2px; margin-left:2px; margin-right:2px; margin-top:2px;"
text="" action="go">
\<?audit suppress oracle.jdeveloper.jsp.validate-children?>
\<af:image id="i1" source="/show?id=#{m.EmpCode}"
inlineStyle="width:50px; height:50px; margin-bottom:2px; margin-left:2px; margin-right:2px; margin-top:2px;"/>
\</af:link>
\</af:iterator>
\</af:panelGroupLayout>
\</af:forEach>
please help me out of this problem
Thanks
Dennis.k