[JBoss JIRA] Created: (RF-10343) inplaceSelect: trying to use controls when the value is default causes full page refresh.
by Ilya Shaikovsky (JIRA)
inplaceSelect: trying to use controls when the value is default causes full page refresh.
-----------------------------------------------------------------------------------------
Key: RF-10343
URL: https://issues.jboss.org/browse/RF-10343
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-input
Affects Versions: 4.0.0.Milestone5
Reporter: Ilya Shaikovsky
Assignee: Anton Belevich
Fix For: 4.0.0.CR1
<rich:inplaceSelect editEvent="dblclick" id="inplaceSelect"
showControls="true" saveOnSelect="false" saveOnBlur="false"
value="#{inplaceSelectBean.value}"
defaultLabel="Double click to edit value">
<f:selectItems value="#{inplaceSelectBean.capitalsOptions}" />
</rich:inplaceSelect>
dblclick the component. Blur. try cancel or save button.
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 10 months
[JBoss JIRA] Created: (RF-10422) User supplied alt text for calendar icon / datatable sort icon
by Bas ter Brugge (JIRA)
User supplied alt text for calendar icon / datatable sort icon
--------------------------------------------------------------
Key: RF-10422
URL: https://issues.jboss.org/browse/RF-10422
Project: RichFaces
Issue Type: Feature Request
Security Level: Public (Everyone can see)
Components: accessibility
Affects Versions: 3.3.3.Final
Reporter: Bas ter Brugge
Priority: Minor
>From an accessibility (WCAG) point of view, it should be possible to provide an alt text for the calendar icon in the rich:calendar component. Please make it possible to provide a user supplied alt text for the calendar icon.
Same goes for the sort icon in the datatable component.
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 10 months
[JBoss JIRA] Created: (RF-10346) inplaceSelect: saveOnSelect and saveOnBlur problem
by Ilya Shaikovsky (JIRA)
inplaceSelect: saveOnSelect and saveOnBlur problem
--------------------------------------------------
Key: RF-10346
URL: https://issues.jboss.org/browse/RF-10346
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-input
Affects Versions: 4.0.0.Milestone5
Reporter: Ilya Shaikovsky
Fix For: 4.0.0.CR1
set both to false.
what I expect:
component not closes by selection - OK
component should not perform value processing on blur - FAIL. currently it's reseting it to previous. For inplaceSelect it's good as it closes anyway. so that attribute really means reset.
but for select it should mean reset when component closes (saveOnSelect=true and saveOnBlur=false) and should not perform any value processing when component still remains opened after blur.
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 10 months
[JBoss JIRA] Created: (RF-10407) Showcase: profile jee6 doesn't work
by Pavol Pitonak (JIRA)
Showcase: profile jee6 doesn't work
------------------------------------
Key: RF-10407
URL: https://issues.jboss.org/browse/RF-10407
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: examples, showcase
Affects Versions: 4.0.0.Milestone5
Environment: RichFaces 4.0.0-SNAPSHOT r.21335
Reporter: Pavol Pitonak
Priority: Critical
Showcase war generated with Maven profile "jee6" contains *validation-api.jar* and *hibernate-validator.jar* which causes that it is not deployable on JBoss 6 Final. It probably influences all examples (core-demo etc.).
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 10 months
[JBoss JIRA] Created: (RF-10272) collapsiblePanel cannot be used inside popupPanel
by Juergen Zimmermann (JIRA)
collapsiblePanel cannot be used inside popupPanel
-------------------------------------------------
Key: RF-10272
URL: https://issues.jboss.org/browse/RF-10272
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-panels-layout-themes
Affects Versions: 4.0.0.Milestone5
Reporter: Juergen Zimmermann
1) I open two popup panels and each contains a tabPanel which again contains a collapsiblePanel.
2) When I click at e.g. the 1st collapsiblePanel in the 2nd popupPanel, then the 1st collapsiblePanel in the >>1st<< popupPanel ist opened.
I'll attach a screenshot to illustrate the problem.
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 10 months
[JBoss JIRA] Created: (RF-10344) Client API: isEditState and isValueChanged works wrong
by Ilya Shaikovsky (JIRA)
Client API: isEditState and isValueChanged works wrong
------------------------------------------------------
Key: RF-10344
URL: https://issues.jboss.org/browse/RF-10344
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-input
Affects Versions: 4.0.0.Milestone5
Reporter: Ilya Shaikovsky
Assignee: Pavel Yaschenko
Fix For: 4.0.0.CR1
<rich:inplaceSelect editEvent="dblclick" id="inplaceSelect"
showControls="true" saveOnSelect="false" saveOnBlur="false"
defaultLabel="Double click to edit value">
<f:selectItem itemValue="0" itemLabel="Option 1" />
<f:selectItem itemValue="1" itemLabel="Option 2" />
<f:selectItem itemValue="2" itemLabel="Option 3" />
dblclick component. Leave the component without changes - component will remains opened and containing of default label - OK
call isEditState from the console - it returns false
in the same time isValueChanged return true.
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 10 months
[JBoss JIRA] Created: (RF-10388) autocomplete: incompatible with dataTable and extendedDataTable
by Ilya Shaikovsky (JIRA)
autocomplete: incompatible with dataTable and extendedDataTable
---------------------------------------------------------------
Key: RF-10388
URL: https://issues.jboss.org/browse/RF-10388
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-input
Affects Versions: 4.0.0.Milestone5
Reporter: Ilya Shaikovsky
Assignee: Nick Belaevski
Priority: Critical
open any showcase sample with dataTable and replace one of the iteration outputs with autocomplete.
Exception appears[1].
That issue was found during review https://issues.jboss.org/browse/RF-9805 - I wanted to check if the same problem present. So after that issue fix - please perform that check with extendedDataTable and fill the new layout issue if exist.
[1]
javax.el.PropertyNotFoundException: /richfaces/extendedDataTable/samples/simpleTable-sample.xhtml @51,47 value="#{car.stock}": Target Unreachable, identifier 'car' resolved to null
at com.sun.faces.facelets.el.TagValueExpression.getType(TagValueExpression.java:97)
at org.richfaces.el.GenericsIntrospectionServiceImpl.getContainerClass(GenericsIntrospectionServiceImpl.java:153)
at org.richfaces.component.AbstractAutocomplete.getConverterForValue(AbstractAutocomplete.java:225)
at org.richfaces.component.AbstractAutocomplete.getConverter(AbstractAutocomplete.java:204)
at javax.faces.component.UIOutput.markInitialState(UIOutput.java:189)
at javax.faces.component.UIInput.markInitialState(UIInput.java:614)
at com.sun.faces.facelets.tag.jsf.ComponentTagHandlerDelegateImpl.apply(ComponentTagHandlerDelegateImpl.java:178)
at javax.faces.view.facelets.DelegatingMetaTagHandler.apply(DelegatingMetaTagHandler.java:114)
at javax.faces.view.facelets.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:94)
at javax.faces.view.facelets.DelegatingMetaTagHandler.applyNextHandler(DelegatingMetaTagHandler.java:131)
at org.richfaces.view.facelets.html.BehaviorsAddingComponentHandlerWrapper.applyNextHandler(BehaviorsAddingComponentHandlerWrapper.java:55)
at com.sun.faces.facelets.tag.jsf.ComponentTagHandlerDelegateImpl.apply(ComponentTagHandlerDelegateImpl.java:162)
at javax.faces.view.facelets.DelegatingMetaTagHandler.apply(DelegatingMetaTagHandler.java:114)
at javax.faces.view.facelets.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:94)
at javax.faces.view.facelets.DelegatingMetaTagHandler.applyNextHandler(DelegatingMetaTagHandler.java:131)
at org.richfaces.view.facelets.html.BehaviorsAddingComponentHandlerWrapper.applyNextHandler(BehaviorsAddingComponentHandlerWrapper.java:55)
at com.sun.faces.facelets.tag.jsf.ComponentTagHandlerDelegateImpl.apply(ComponentTagHandlerDelegateImpl.java:162)
at javax.faces.view.facelets.DelegatingMetaTagHandler.apply(DelegatingMetaTagHandler.java:114)
at javax.faces.view.facelets.DelegatingMetaTagHandler.applyNextHandler(DelegatingMetaTagHandler.java:131)
at org.richfaces.view.facelets.html.BehaviorsAddingComponentHandlerWrapper.applyNextHandler(BehaviorsAddingComponentHandlerWrapper.java:55)
at com.sun.faces.facelets.tag.jsf.ComponentTagHandlerDelegateImpl.apply(ComponentTagHandlerDelegateImpl.java:162)
at javax.faces.view.facelets.DelegatingMetaTagHandler.apply(DelegatingMetaTagHandler.java:114)
at com.sun.faces.facelets.tag.ui.CompositionHandler.apply(CompositionHandler.java:162)
at com.sun.faces.facelets.compiler.NamespaceHandler.apply(NamespaceHandler.java:89)
at com.sun.faces.facelets.compiler.EncodingHandler.apply(EncodingHandler.java:79)
at com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:304)
at com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:363)
at com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:342)
at com.sun.faces.facelets.impl.DefaultFaceletContext.includeFacelet(DefaultFaceletContext.java:196)
at com.sun.faces.facelets.tag.ui.IncludeHandler.apply(IncludeHandler.java:104)
at javax.faces.view.facelets.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:94)
at com.sun.faces.facelets.tag.ui.CompositionHandler.apply(CompositionHandler.java:162)
at com.sun.faces.facelets.compiler.NamespaceHandler.apply(NamespaceHandler.java:89)
at com.sun.faces.facelets.compiler.EncodingHandler.apply(EncodingHandler.java:79)
at com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:304)
at com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:363)
at com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:342)
at com.sun.faces.facelets.impl.DefaultFaceletContext.includeFacelet(DefaultFaceletContext.java:196)
at com.sun.faces.facelets.tag.ui.IncludeHandler.apply(IncludeHandler.java:104)
at javax.faces.view.facelets.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:94)
at com.sun.faces.facelets.tag.ui.DefineHandler.applyDefinition(DefineHandler.java:99)
at com.sun.faces.facelets.tag.ui.CompositionHandler.apply(CompositionHandler.java:174)
at com.sun.faces.facelets.impl.DefaultFaceletContext$TemplateManager.apply(DefaultFaceletContext.java:392)
at com.sun.faces.facelets.impl.DefaultFaceletContext.includeDefinition(DefaultFaceletContext.java:363)
at com.sun.faces.facelets.tag.ui.InsertHandler.apply(InsertHandler.java:104)
at javax.faces.view.facelets.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:94)
at javax.faces.view.facelets.DelegatingMetaTagHandler.applyNextHandler(DelegatingMetaTagHandler.java:131)
at org.richfaces.view.facelets.html.BehaviorsAddingComponentHandlerWrapper.applyNextHandler(BehaviorsAddingComponentHandlerWrapper.java:55)
at com.sun.faces.facelets.tag.jsf.ComponentTagHandlerDelegateImpl.apply(ComponentTagHandlerDelegateImpl.java:162)
at javax.faces.view.facelets.DelegatingMetaTagHandler.apply(DelegatingMetaTagHandler.java:114)
at javax.faces.view.facelets.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:94)
at com.sun.faces.facelets.tag.jsf.core.ViewHandler.apply(ViewHandler.java:156)
at javax.faces.view.facelets.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:94)
at com.sun.faces.facelets.compiler.NamespaceHandler.apply(NamespaceHandler.java:89)
at javax.faces.view.facelets.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:94)
at com.sun.faces.facelets.compiler.EncodingHandler.apply(EncodingHandler.java:79)
at com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:304)
at com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:363)
at com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:342)
at com.sun.faces.facelets.impl.DefaultFaceletContext.includeFacelet(DefaultFaceletContext.java:196)
at com.sun.faces.facelets.tag.ui.CompositionHandler.apply(CompositionHandler.java:151)
at com.sun.faces.facelets.compiler.NamespaceHandler.apply(NamespaceHandler.java:89)
at com.sun.faces.facelets.compiler.EncodingHandler.apply(EncodingHandler.java:79)
at com.sun.faces.facelets.impl.DefaultFacelet.apply(DefaultFacelet.java:148)
at com.sun.faces.application.view.FaceletViewHandlingStrategy.buildView(FaceletViewHandlingStrategy.java:734)
at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:96)
at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:97)
at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:135)
at javax.faces.webapp.FacesServlet.service(FacesServlet.java:309)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:306)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:240)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:161)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:164)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:108)
at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:558)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:118)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:379)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:243)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:259)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:237)
at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:281)
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
at java.lang.Thread.run(Thread.java:662)
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 10 months