|
View:
New views
6 Messages
—
Rating Filter:
Alert me
|
|
|
[jira] Created: (MYFACES-2397) f:ajax attributes execute and render should take space delimited clientIdsf:ajax attributes execute and render should take space delimited clientIds
-------------------------------------------------------------------------- Key: MYFACES-2397 URL: https://issues.apache.org/jira/browse/MYFACES-2397 Project: MyFaces Core Issue Type: Bug Components: JSR-314 Affects Versions: 2.0.0-alpha Reporter: Jakob Korherr Testing the mojarra 2.0.1 sample "custom-tag", I got the following Exception: javax.faces.FacesException: Component with id:out count eventcount not found The problem is, that the example uses f:ajax to render 3 components in the following way: <f:ajax event="keyup" render="out count eventcount" listener="#{data.update}"/> MyFaces does not check, if the value of render is a space delimited list of clientIds and so it wants to find the component with clientId: "out count eventcount", which, of course, does not exist. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
|
|
[jira] Resolved: (MYFACES-2397) f:ajax attributes execute and render should take space delimited clientIds[ https://issues.apache.org/jira/browse/MYFACES-2397?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jakob Korherr resolved MYFACES-2397. ------------------------------------ Resolution: Fixed Fix Version/s: 2.0.0-alpha > f:ajax attributes execute and render should take space delimited clientIds > -------------------------------------------------------------------------- > > Key: MYFACES-2397 > URL: https://issues.apache.org/jira/browse/MYFACES-2397 > Project: MyFaces Core > Issue Type: Bug > Components: JSR-314 > Affects Versions: 2.0.0-alpha > Reporter: Jakob Korherr > Fix For: 2.0.0-alpha > > > Testing the mojarra 2.0.1 sample "custom-tag", I got the following Exception: > javax.faces.FacesException: Component with id:out count eventcount not found > The problem is, that the example uses f:ajax to render 3 components in the following way: > <f:ajax event="keyup" render="out count eventcount" listener="#{data.update}"/> > MyFaces does not check, if the value of render is a space delimited list of clientIds and so it wants to find the component with clientId: "out count eventcount", which, of course, does not exist. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
|
|
[jira] Commented: (MYFACES-2397) f:ajax attributes execute and render should take space delimited clientIds[ https://issues.apache.org/jira/browse/MYFACES-2397?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12774273#action_12774273 ] Matthias Weßendorf commented on MYFACES-2397: --------------------------------------------- how is this fixed ? W/o commit ? > f:ajax attributes execute and render should take space delimited clientIds > -------------------------------------------------------------------------- > > Key: MYFACES-2397 > URL: https://issues.apache.org/jira/browse/MYFACES-2397 > Project: MyFaces Core > Issue Type: Bug > Components: JSR-314 > Affects Versions: 2.0.0-alpha > Reporter: Jakob Korherr > Fix For: 2.0.0-alpha > > > Testing the mojarra 2.0.1 sample "custom-tag", I got the following Exception: > javax.faces.FacesException: Component with id:out count eventcount not found > The problem is, that the example uses f:ajax to render 3 components in the following way: > <f:ajax event="keyup" render="out count eventcount" listener="#{data.update}"/> > MyFaces does not check, if the value of render is a space delimited list of clientIds and so it wants to find the component with clientId: "out count eventcount", which, of course, does not exist. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
|
|
[jira] Reopened: (MYFACES-2397) f:ajax attributes execute and render should take space delimited clientIds[ https://issues.apache.org/jira/browse/MYFACES-2397?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Matthias Weßendorf reopened MYFACES-2397: ----------------------------------------- > f:ajax attributes execute and render should take space delimited clientIds > -------------------------------------------------------------------------- > > Key: MYFACES-2397 > URL: https://issues.apache.org/jira/browse/MYFACES-2397 > Project: MyFaces Core > Issue Type: Bug > Components: JSR-314 > Affects Versions: 2.0.0-alpha > Reporter: Jakob Korherr > Fix For: 2.0.0-alpha > > > Testing the mojarra 2.0.1 sample "custom-tag", I got the following Exception: > javax.faces.FacesException: Component with id:out count eventcount not found > The problem is, that the example uses f:ajax to render 3 components in the following way: > <f:ajax event="keyup" render="out count eventcount" listener="#{data.update}"/> > MyFaces does not check, if the value of render is a space delimited list of clientIds and so it wants to find the component with clientId: "out count eventcount", which, of course, does not exist. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
|
|
[jira] Resolved: (MYFACES-2397) f:ajax attributes execute and render should take space delimited clientIds[ https://issues.apache.org/jira/browse/MYFACES-2397?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Matthias Weßendorf resolved MYFACES-2397. ----------------------------------------- Resolution: Duplicate this is part of another MYFACES issue... > f:ajax attributes execute and render should take space delimited clientIds > -------------------------------------------------------------------------- > > Key: MYFACES-2397 > URL: https://issues.apache.org/jira/browse/MYFACES-2397 > Project: MyFaces Core > Issue Type: Bug > Components: JSR-314 > Affects Versions: 2.0.0-alpha > Reporter: Jakob Korherr > Fix For: 2.0.0-alpha > > > Testing the mojarra 2.0.1 sample "custom-tag", I got the following Exception: > javax.faces.FacesException: Component with id:out count eventcount not found > The problem is, that the example uses f:ajax to render 3 components in the following way: > <f:ajax event="keyup" render="out count eventcount" listener="#{data.update}"/> > MyFaces does not check, if the value of render is a space delimited list of clientIds and so it wants to find the component with clientId: "out count eventcount", which, of course, does not exist. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
|
|
[jira] Commented: (MYFACES-2397) f:ajax attributes execute and render should take space delimited clientIds[ https://issues.apache.org/jira/browse/MYFACES-2397?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12774276#action_12774276 ] Jakob Korherr commented on MYFACES-2397: ---------------------------------------- yes, it was fixed in MYFACES-2116, it just did not work when I tested the sample. sorry for the duplicate. > f:ajax attributes execute and render should take space delimited clientIds > -------------------------------------------------------------------------- > > Key: MYFACES-2397 > URL: https://issues.apache.org/jira/browse/MYFACES-2397 > Project: MyFaces Core > Issue Type: Bug > Components: JSR-314 > Affects Versions: 2.0.0-alpha > Reporter: Jakob Korherr > Fix For: 2.0.0-alpha > > > Testing the mojarra 2.0.1 sample "custom-tag", I got the following Exception: > javax.faces.FacesException: Component with id:out count eventcount not found > The problem is, that the example uses f:ajax to render 3 components in the following way: > <f:ajax event="keyup" render="out count eventcount" listener="#{data.update}"/> > MyFaces does not check, if the value of render is a space delimited list of clientIds and so it wants to find the component with clientId: "out count eventcount", which, of course, does not exist. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
| Free embeddable forum powered by Nabble | Forum Help |