I'm using axe:dialog + a xe:formTable to build a DialogBox to edit a few items on a form
The Dialog work on an XPage and is displayed by a simple link action
<xp:this.action><![CDATA[#{javascript
try{
getComponent('dialog_document_resubmission').show()
} catch(e) {
_dump(e)
}
}]]></xp:this.action>
When I try to open the dialog for a document that is displayed in a tab_container, I get the following error message.
22.12.2011 15:45:11 HTTP JVM: com.ibm.xsp.exception.EvaluationExceptionEx: Error while executing JavaScript computed expression
22.12.2011 15:45:12 HTTP JVM: com.ibm.xsp.webapp.FacesServlet$ExtendedServletException: java.lang.ClassCastException: com.ibm.xsp.extlib.component.data.UIFormTable incompatible with com.ibm.xsp.extlib.component.dialog.UIDialog$PopupContent
22.12.2011 15:45:12 HTTP JVM: CLFAD0134E: Exception processing XPage request. For more detailed information, please consult error-log-0.xml located in D:/Lotus/Domino/data/domino/workspace/logs
22.12.2011 15:45:50 HTTP JVM: com.ibm.xsp.exception.EvaluationExceptionEx
22.12.2011 15:45:50 HTTP JVM: =
22.12.2011 15:45:50 HTTP JVM: com.ibm.xsp.exception.EvaluationExceptionEx: Error while executing JavaScript computed expression
22.12.2011 15:45:51 HTTP JVM: com.ibm.xsp.webapp.FacesServlet$ExtendedServletException: java.lang.ClassCastException: com.ibm.xsp.extlib.component.data.UIFormTable incompatible with com.ibm.xsp.extlib.component.dialog.UIDialog$PopupContent
Any advice what to do to avoid the error?