[JBoss JIRA] Closed: (RF-566) Nested a4j:include navigation issue.
by Viktor Volkov (JIRA)
[ http://jira.jboss.com/jira/browse/RF-566?page=all ]
Viktor Volkov closed RF-566.
----------------------------
Assignee: Viktor Volkov (was: Alexander Smirnov)
> Nested a4j:include navigation issue.
> ------------------------------------
>
> Key: RF-566
> URL: http://jira.jboss.com/jira/browse/RF-566
> Project: RichFaces
> Issue Type: Bug
> Affects Versions: 3.0.2
> Reporter: Igor Shabalov
> Assigned To: Viktor Volkov
> Fix For: 3.1.0
>
> Attachments: hello.jsp, main.jsp, subOne.jsp, subTwo.jsp
>
>
> Looks like nested a4j:includes don't support navigation rules.
> In my practice, if I include some page, for example foo1.xhtml and setup rules which will change it to foo2.xhtml its work perfectly. But if I add foo1.xhtml to the page in the following way:
> Code:
> <a4j:include viewId="./fooPanel.xhtml"/>
> where fooPanel.xhtml have following code:
> Code:
> <a4j:include viewId="./foo1.xhtml"/>
> navigation doesn't work. Is it a bug, a "feature" or I do something wrong?
> Regards,
> Niktia Leonov
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
17 years, 11 months
[JBoss JIRA] Closed: (RF-591) Scrollable Grid: NFE upon scrolling
by Viktor Volkov (JIRA)
[ http://jira.jboss.com/jira/browse/RF-591?page=all ]
Viktor Volkov closed RF-591.
----------------------------
Assignee: Viktor Volkov (was: Maksim Kaszynski)
verified on 3.2.0 CR7
> Scrollable Grid: NFE upon scrolling
> -----------------------------------
>
> Key: RF-591
> URL: http://jira.jboss.com/jira/browse/RF-591
> Project: RichFaces
> Issue Type: Bug
> Affects Versions: 3.1.0
> Environment: Any Browser/platform
> Reporter: Maksim Kaszynski
> Assigned To: Viktor Volkov
> Fix For: 3.1.0
>
>
> 1. Select several rows.
> 2. Scroll down
> 3. Scroll up
> 4. Select some additional rows
> 5. Scroll down
> 6. Exception page appears
> javax.faces.convert.ConverterException: java.lang.NumberFormatException: For input string: "null"
> org.richfaces.convert.selection.ClientSelectionConverter.getAsSelection(ClientSelectionConverter.java:90)
> org.richfaces.convert.selection.ClientSelectionConverter.getAsObject(ClientSelectionConverter.java:31)
> org.richfaces.renderkit.html.SelectionRendererContributor.decode(SelectionRendererContributor.java:67)
> org.richfaces.renderkit.CompositeRenderer$1.execute(CompositeRenderer.java:74)
> org.richfaces.renderkit.CompositeRenderer$Command.execute(CompositeRenderer.java:58)
> org.richfaces.renderkit.CompositeRenderer.doDecode(CompositeRenderer.java:146)
> org.richfaces.renderkit.html.ScrollableGridBaseRenderer.doDecode(ScrollableGridBaseRenderer.java:539)
> org.ajax4jsf.renderkit.RendererBase.decode(RendererBase.java:76)
> javax.faces.component.UIComponentBase.decode(UIComponentBase.java:685)
> org.ajax4jsf.component.UIDataAdaptor.processDecodes(UIDataAdaptor.java:929)
> org.ajax4jsf.component.UIDataAdaptor.processDecodes(UIDataAdaptor.java:938)
> org.richfaces.component.UIScrollableGrid.processDecodes(UIScrollableGrid.java:134)
> javax.faces.component.UIForm.processDecodes(UIForm.java:164)
> javax.faces.component.UIComponentBase.processDecodes(UIComponentBase.java:900)
> javax.faces.component.UIViewRoot.processDecodes(UIViewRoot.java:326)
> org.ajax4jsf.component.AjaxViewRoot.access$001(AjaxViewRoot.java:59)
> org.ajax4jsf.component.AjaxViewRoot$1.invokeRoot(AjaxViewRoot.java:262)
> org.ajax4jsf.context.JsfOneOneInvoker.invokeOnRegionOrRoot(JsfOneOneInvoker.java:56)
> org.ajax4jsf.context.AjaxContextImpl.invokeOnRegionOrRoot(AjaxContextImpl.java:171)
> org.ajax4jsf.component.AjaxViewRoot.processDecodes(AjaxViewRoot.java:278)
> com.sun.faces.lifecycle.ApplyRequestValuesPhase.execute(ApplyRequestValuesPhase.java:99)
> com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:245)
> com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:110)
> javax.faces.webapp.FacesServlet.service(FacesServlet.java:213)
> org.richfaces.demo.benchmark.RequestBenchMarkFilter.doFilter(RequestBenchMarkFilter.java:45)
> org.ajax4jsf.webapp.BaseXMLFilter.doXmlFilter(BaseXMLFilter.java:141)
> org.ajax4jsf.webapp.BaseFilter.doFilter(BaseFilter.java:281)
> org.richfaces.demo.benchmark.RequestBenchMarkFilter.doFilter(RequestBenchMarkFilter.java:45)
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
17 years, 11 months
[JBoss JIRA] Created: (RF-1021) Caching not working for internet resources on Firefox + secure web app
by Jason Anderson (JIRA)
Caching not working for internet resources on Firefox + secure web app
----------------------------------------------------------------------
Key: RF-1021
URL: http://jira.jboss.com/jira/browse/RF-1021
Project: RichFaces
Issue Type: Feature Request
Affects Versions: 3.1.1
Environment: JSF-RI 1.2p02, Seam 2.0.0.CR1, JBoss 4.0.3+Tomcat 5.5 (patched to JSF 1.2)
Reporter: Jason Anderson
All internet resources being returned by RichFaces/ajax4jsf (e.g. /a4j*/*.jsf) have a custom response header set (e.g. max-age=....).
For secure applications using SSL, Tomcat automatically tries to set Pragma: no-cache on everything, so you have to write a custom servlet filter for the rest of the application that overrides the no-cache, and sets the cache settings to "public" etc. for resources which are truely static.
The problem is that the custom filter cannot override resources returned by RichFaces (doesn't seem to matter where in the filter chain the custom filter is, calling response.setHeader will not override the one set in InternetResourceBase.sendHeader ).
The effect of this is that we can get resources caching correctly in IE, but for Firefox what Richfaces return is incomplete and Firefox refuses to cache any of the RichFaces resources.
I'm not sure what to recommend, either to allow web app to optionally turn off InternetResourceBase.sendHeaders and allow application to control this itself, or to simply fix the InternerResourceBase to setup addition response header cache control items like "PUBLIC" or "must-revalidate".
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
17 years, 11 months
[JBoss JIRA] Created: (RF-2780) columns: "sortOrder" attribute doesn't work correct for "unsorted" value.
by Mikhail Vitenkov (JIRA)
columns: "sortOrder" attribute doesn't work correct for "unsorted" value.
-------------------------------------------------------------------------
Key: RF-2780
URL: http://jira.jboss.com/jira/browse/RF-2780
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.0
Environment: IE6, IE7, FF, Safari(3.2.0.CR5)
Reporter: Mikhail Vitenkov
Assigned To: Nick Belaevski
Step 1. Add sortOrder = "#{columns.sortOrder}" inside rich:columns tag(for binding sortOrder attribute with radio buttons, presented on test application page). For more info see code for dynamic columns:
<rich:columns value="#{columns.data2}" var="d2" footerClass="#{style.footerClass}" headerClass="#{style.headerClass}" breakBefore="#{columns.breakBefore}" colspan="#{columns.colspan}"
columns="#{columns.columns}" index="index" rowspan="#{columns.rowspan}" sortBy="#{d1.str0}" selfSorted="true" sortOrder="#{columns.sortOrder}"
begin="#{columns.begin}" end="#{columns.end}" width="#{columns.width}" style="#{style.style}" styleClass="#{style.styleClass}" >
Step 2. Navigate to test application page.
Step 3. Set sortMode="UNSORTED".
Step 4. Verify headers' triangles presence(sorting indicating). - it's absent
Step 5. Click on column's header.
Actual behavior:
Sorting process became initiated, but no sorting happens.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
17 years, 11 months