[richfaces-issues] [JBoss JIRA] (RF-12229) Ajax partial response extension tag is not written in f:ajax or render="@all"

Luca Nardelli (JIRA) jira-events at lists.jboss.org
Thu May 3 14:36:17 EDT 2012


     [ https://issues.jboss.org/browse/RF-12229?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Luca Nardelli updated RF-12229:
-------------------------------

    Description: 
* Partial response extension is not written in f:ajax causes RF-12031
* Partial response extension is not written if render="@all" (see steps to Reproduce)
Render all seems a wanted behaviour: ExtendedPartialViewContextImpl.visitActivatorAtRender method
{code:java}
 if (!isRenderAll()) {
           ...

            if (!Boolean.TRUE.equals(renderAll) && !ids.contains(ALL)) {
                addImplicitRenderIds(ids, limitRender);

                appendOnbeforedomupdate(onbeforedomupdate);
                appendOncomplete(oncomplete);
                setResponseData(responseData);
            }
        }
{code}


  was:
* Partial response extension is not written in f:ajax causes RF-12031
* Partial response extension is not written if render="@all" (see steps to Reproduce)
Render all seems a wanted behaviour: ExtendedPartialViewContextImpl.visitActivatorAtRender method
{code:java}
 if (!isRenderAll()) {
            RenderComponentCallback callback = new RenderComponentCallback(getFacesContext(), behaviorEvent);

            if (visitActivatorComponent(activatorComponentId, callback, EnumSet.noneOf(VisitHint.class))) {
                setupRenderCallbackData(callback);
            } else {
                // TODO - the same as for "execute"
            }

            // take collection value stored during execute
            if (componentRenderIds != null) {
                ids.addAll(componentRenderIds);
            }

            if (!Boolean.TRUE.equals(renderAll) && !ids.contains(ALL)) {
                addImplicitRenderIds(ids, limitRender);

                appendOnbeforedomupdate(onbeforedomupdate);
                appendOncomplete(oncomplete);
                setResponseData(responseData);
            }
        }
{code}



    
> Ajax partial response extension tag is not written in f:ajax or render="@all"
> -----------------------------------------------------------------------------
>
>                 Key: RF-12229
>                 URL: https://issues.jboss.org/browse/RF-12229
>             Project: RichFaces
>          Issue Type: Bug
>      Security Level: Public(Everyone can see) 
>          Components: core
>    Affects Versions: 4.2.1.Final
>         Environment: RichFaces 4.3.0-SNAPSHOT
>            Reporter: Luca Nardelli
>
> * Partial response extension is not written in f:ajax causes RF-12031
> * Partial response extension is not written if render="@all" (see steps to Reproduce)
> Render all seems a wanted behaviour: ExtendedPartialViewContextImpl.visitActivatorAtRender method
> {code:java}
>  if (!isRenderAll()) {
>            ...
>             if (!Boolean.TRUE.equals(renderAll) && !ids.contains(ALL)) {
>                 addImplicitRenderIds(ids, limitRender);
>                 appendOnbeforedomupdate(onbeforedomupdate);
>                 appendOncomplete(oncomplete);
>                 setResponseData(responseData);
>             }
>         }
> {code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the richfaces-issues mailing list