Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.0.3-SNAPSHOT
-
None
-
None
Description
When using the following, I am able to execute an action method:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:ui="http://java.sun.com/jsf/facelets">
<h:head>
<title>BUG...</title>
</h:head>
<h:body>
<h:form id="jsfForm">
<h:commandButton id="button" value="dasdsa" action="#
">
<f:ajax />
</h:commandButton>
</h:form>
</h:body>
</html>
However, when using this <h:form prependId="false" ......> it does not work.