[JBoss JIRA] Created: (RF-5593) Suggestion Box doesn't hide when pressing TAB
by Urszula Jessen (JIRA)
Suggestion Box doesn't hide when pressing TAB
---------------------------------------------
Key: RF-5593
URL: https://jira.jboss.org/jira/browse/RF-5593
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.2
Environment: WinXP, Eclipse Europa, tested on ff 2.x and IE7
Reporter: Urszula Jessen
The error occurs when pressing TAB in the moment when the suggestion box is being drawn with the matching suggestions to the input. (the TAB should be pressed
exactly in the moment when suggestion box begins to be drawn).
The first suggestion is selected, the focus is set to the input field but the suggestion box doesn't hide.
Testing the bug on Richfaces live Demo Site (Open Source RichFaces JSF Components) the error occures in a bit different way than in my developement.
In my Application, the first Suggestion is filled in input field but still remains available in the suggestion box (but nothing happens when trying to select with mouse). In LiveDemo the Entry is selected and the suggestion box remains empty.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 11 months
[JBoss JIRA] Created: (RF-6590) fileUpload: cannot start application using web.xml parameter maxRequestSize="2684354560"
by Tsikhon Kuprevich (JIRA)
fileUpload: cannot start application using web.xml parameter maxRequestSize="2684354560"
----------------------------------------------------------------------------------------
Key: RF-6590
URL: https://jira.jboss.org/jira/browse/RF-6590
Project: RichFaces
Issue Type: Bug
Environment: 3.3.1.BETA1
myFaces
tomcat 6
Reporter: Tsikhon Kuprevich
Assignee: Nick Belaevski
SEVERE: Exception starting filter ajax4jsf
java.lang.NumberFormatException: For input string: "2684354560"
at java.lang.NumberFormatException.forInputString(NumberFormatException.java:48)
at java.lang.Integer.parseInt(Integer.java:459)
at java.lang.Integer.parseInt(Integer.java:497)
at org.ajax4jsf.webapp.BaseFilter.init(BaseFilter.java:184)
at org.apache.catalina.core.ApplicationFilterConfig.getFilter(ApplicationFilterConfig.java:275)
at org.apache.catalina.core.ApplicationFilterConfig.setFilterDef(ApplicationFilterConfig.java:397)
at org.apache.catalina.core.ApplicationFilterConfig.<init>(ApplicationFilterConfig.java:108)
at org.apache.catalina.core.StandardContext.filterStart(StandardContext.java:3693)
at org.apache.catalina.core.StandardContext.start(StandardContext.java:4340)
at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)
at org.apache.catalina.core.StandardHost.start(StandardHost.java:719)
at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)
at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:443)
at org.apache.catalina.core.StandardService.start(StandardService.java:516)
at org.apache.catalina.core.StandardServer.start(StandardServer.java:710)
at org.apache.catalina.startup.Catalina.start(Catalina.java:566)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:288)
at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:413)
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 11 months
[JBoss JIRA] Created: (RF-5177) fileUpload: validator attribute doesn't work.
by Mikhail Vitenkov (JIRA)
fileUpload: validator attribute doesn't work.
---------------------------------------------
Key: RF-5177
URL: https://jira.jboss.org/jira/browse/RF-5177
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.0
Environment: IE6, IE7, FF 3.1.3, Safari 3.1, Opera 9.62(3.3.0.BETA1)
Reporter: Mikhail Vitenkov
Assignee: Nick Belaevski
#1. Create class that implements Validator class.
#2. Override validate method, like this:
public void validate(FacesContext context, UIComponent component,
Object value) throws ValidatorException {
File f = (File)value;
if(f.getName().toString().contains("emo")){
throw new ValidatorException(new FacesMessage("Test validator: no 'emo' should present in file name!"));
}
}
#3. Pass method from previous step to "validator" component's attribute: validator="#{fileUpload.validate}".
#4. Navigate to page.
#5. Add & upload any file with 'emo' substring.
Actual behavior:
validate method wasn't called.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 12 months