Hi Gurus,
I am new in adf and using 11.1.2.3. I am using EL with simple html tags. Here is my sample code.
<tr>
<af:iterator id="i1" value="#{bindings.KeyboardRow1.collectionModel}" var="row">
<td colspan="${row.ColSpan}" rowspan="${row.RowSpan}" >
<af:commandButton text="#{row.ButtonText}" styleClass="#{row.CssClass}" id="cbRow1Key"/>
</td>
</af:iterator>
</tr>
I want to control the colspan and rowspan from view object binds. Row values are applying on button but not on TD tag.
Any Suggestions...
Thanks in Advance