Hi ADF Experts,
Facing one issue for concatenating 2 string value, below is code snippet
<af:column headerText="#{nestedAttr.column}" sortable="true"
id="c2" filterable="true"
align="#{def.properties.descriptortype eq 'GROUP'?'center':'right'}"
visible="#{def.properties.descriptortype eq 'GROUP'}">
<af:outputText value="#{row[(def.name + nestedAttr.column)]}" id="iy6">
</af:outputText>
</af:column>
I want to join 2 string and evaluate value of that column.
def.name ="First"
nestedAttr.column ="Name"
I have to pass #{row[FirstName]} to get the column result.
Any pointer solution will really helpful.
Jdev version 11.1.1.7
Regards,
Shrikant