Reputation: 2224
The following keeps returning null any idea why
<ui:param name="dialogName" value="#{index.toString().concat('Overlay')}" />
Upvotes: 1
Views: 8516
Reputation: 8574
Just do this:
<ui:param name="dialogName" value="#{cc.attrs.xProd.product.productId}Overlay" />
See also:
Upvotes: 6