ActiveX control inside a JSF PAge
Hoping someone else has done this.
I am embedding an activeX control inside my jsf page using the <object> tag. I have this placed inside a <form>.
I also have a button
<ui:button action="#{Page1.getPointFile_action}" binding="#{Page1.pointFile}" id="pointFile" onClick="SubmitToServer()" text="Button"/>
The issues is the onClick fires the java script , it runs and returns, however my action method is never getting called.
Ideas?

