I am working in XPages (JSF View controller). In my DataTable, I want to create a html attribute data-dmrkey="##"
Here is the XML Markup on the page. Builds fine.
<xp:attr name="data-dmrkey" value="#{rowData.dmrkey}"></xp:attr>
At runtime I get this message
javax.faces.FacesException: java.lang.ClassCastException: java.lang.Long incompatible with java.lang.String javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:865) com.ibm.xsp.component.UIDataPanelBase.invokeOnComponent(UIDataPanelBase.java:416)
Is there a Expression Language way to convert this primitive type to a String?