Just installed JDeveloper 11.1.1.6 and opened a project that was originally created in 11.1.1.4 and worked fine in 11.1.1.5. Now, when clicking on a JSF commandLink (h:commandLink), I receive the following error in the web browser console:
Uncaught ReferenceError: submitForm is not defined
I figure there is a missing or mis-matched JSF or ADF library somewhere in the install that calls the commandLink submitForm() JS method, but I cannot quite pinpoint it. Any help would be appreciated. Thanks.
UPDATE: My web.xml has the following:
<servlet>
<servlet-name>resources</servlet-name>
<servlet-class>org.apache.myfaces.trinidad.webapp.ResourceServlet</servlet-class>
</servlet>
...
<servlet-mapping>
<servlet-name>resources</servlet-name>
<url-pattern>/adf/*</url-pattern>
</servlet-mapping>
Weblogic 10.3.5
Edited by: MattC on Jun 1, 2012 2:26 PM