Regression: CommandButton blocking on PPR doesn't work on IE
------------------------------------------------------------
Key: TRINIDAD-1061
URL: https://issues.apache.org/jira/browse/TRINIDAD-1061
Project: MyFaces Trinidad
Issue Type: Bug
Components: Components
Environment: IE browser
Reporter: Yee-Wah Lee
Priority: Minor
This is a regression from TRINIDAD-952.
1. Create a command button that calls a server side method and which has the
blocking attribute set to true.
2. Run the debugger, and put a breakpoint in the server method.
3. Press the command button once - debugger stops at the server method. Press
the button again.
4. Let the debugger continue, and note that it stops again at the method -> the
second click was not blocked.
<af:commandButton text="Search" blocking="true" action="#{date.doSearch}"
partialSubmit="true"/>\
public String doSearch ()
{
System.out.println("searchAction method invoked");
return "";
}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.