[JBoss JIRA] (RF-9417) a4j:ajax doesn't work with selectManyCheckbox
by John K (JIRA)
[ https://issues.jboss.org/browse/RF-9417?page=com.atlassian.jira.plugin.sy... ]
John K edited comment on RF-9417 at 10/28/13 1:05 PM:
------------------------------------------------------
doesn't work for me. I have tried a lot of different events
{noformat}
<h:dataTable value="#{bean.someList}" var="listItem">
<h:column>
<h:selectBooleanCheckbox value="#{listItem.BooleanField}" >
<f:ajax event="select" execute="@this" /> // the same for <a4j:ajax ......
</h:selectBooleanCheckbox>
</h:column>
</h:dataTable>
{noformat}
this piece of code does nothing : (
but in case with no iterable around , just
{noformat}
<h:selectBooleanCheckbox value="#{bean.BooleanField}" >
<f:ajax event="select" execute="@this" /> // the same for <a4j:ajax ......
</h:selectBooleanCheckbox>
{noformat}
this works fine
was (Author: ikos2201):
doesn't work for me. I have tried a lot of different events
{noformat}
<h:dataTable value="#{bean.someList}" var="listItem">
<h:column>
<h:selectBooleanCheckbox value="#{listItem.BooleanField}" >
<f:ajax event="select" execute="@this" /> // the same for <a4j:ajax ......
</h:selectBooleanCheckbox>
</h:column>
</h:dataTable>
this piece of code does nothing : (
but in case with no iterable around , just
<h:selectBooleanCheckbox value="#{bean.BooleanField}" >
<f:ajax event="select" execute="@this" /> // the same for <a4j:ajax ......
</h:selectBooleanCheckbox>
{noformat}
this works fine
> a4j:ajax doesn't work with selectManyCheckbox
> ---------------------------------------------
>
> Key: RF-9417
> URL: https://issues.jboss.org/browse/RF-9417
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-a4j-core
> Affects Versions: 4.0.0.Milestone3
> Environment: RichFaces 4.0.0.20101004-M3 r.19446
> Metamer 4.0.0-SNAPSHOT r.19446
> Mojarra 2.0.2-FCS
> JBoss AS 6.0.0.20100911-M5
> OpenJDK Runtime Environment 1.6.0_18-b18 @ Linux
> MSIE 8.0, MSIE 7.0 @ Windows
> Reporter: Pavol Pitonak
> Assignee: Nick Belaevski
> Fix For: 4.0.0.Milestone3
>
>
> The following h:selectManyCheckbox with a4j:ajax doesn't work in IE 7 and IE 8. It works fine in Chrome and Firefox.
> http://anonsvn.jboss.org/repos/richfaces/modules/tests/metamer/trunk/appl... (r. 19447)
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 2 months
[JBoss JIRA] (RF-9417) a4j:ajax doesn't work with selectManyCheckbox
by John K (JIRA)
[ https://issues.jboss.org/browse/RF-9417?page=com.atlassian.jira.plugin.sy... ]
John K commented on RF-9417:
----------------------------
doesn't work for me. I have tried a lot of different events
<h:dataTable value="#{bean.someList}" var="listItem">
<h:column>
<h:selectBooleanCheckbox value="#{listItem.BooleanField}" >
<f:ajax event="select" execute="@this" /> // the same for <a4j:ajax ......
</h:selectBooleanCheckbox>
</h:column>
</h:dataTable>
this piece of code does nothing : (
but in case with no iterable around , just
<h:selectBooleanCheckbox value="#{bean.BooleanField}" >
<f:ajax event="select" execute="@this" /> // the same for <a4j:ajax ......
</h:selectBooleanCheckbox>
this works fine
> a4j:ajax doesn't work with selectManyCheckbox
> ---------------------------------------------
>
> Key: RF-9417
> URL: https://issues.jboss.org/browse/RF-9417
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-a4j-core
> Affects Versions: 4.0.0.Milestone3
> Environment: RichFaces 4.0.0.20101004-M3 r.19446
> Metamer 4.0.0-SNAPSHOT r.19446
> Mojarra 2.0.2-FCS
> JBoss AS 6.0.0.20100911-M5
> OpenJDK Runtime Environment 1.6.0_18-b18 @ Linux
> MSIE 8.0, MSIE 7.0 @ Windows
> Reporter: Pavol Pitonak
> Assignee: Nick Belaevski
> Fix For: 4.0.0.Milestone3
>
>
> The following h:selectManyCheckbox with a4j:ajax doesn't work in IE 7 and IE 8. It works fine in Chrome and Firefox.
> http://anonsvn.jboss.org/repos/richfaces/modules/tests/metamer/trunk/appl... (r. 19447)
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 2 months
[JBoss JIRA] (RF-13291) Optimized resource ordering is missing resources after recent changes
by Brian Leathem (JIRA)
[ https://issues.jboss.org/browse/RF-13291?page=com.atlassian.jira.plugin.s... ]
Brian Leathem commented on RF-13291:
------------------------------------
The reason for the problem was putting the component path in the library attribute of the resource, as in:
{code}
@ResourceDependency(library = "org.richfaces/comon", name = "richfaces-base-component.js")
{code}
when defined in the above manner, the _common_ folder is left out of the inferred relative path of the resource. Correcting the resource dependency annotation to:
{code}
@ResourceDependency(library = "org.richfaces", name = "common/richfaces-base-component.js")
{code}
resolves the problem.
> Optimized resource ordering is missing resources after recent changes
> ---------------------------------------------------------------------
>
> Key: RF-13291
> URL: https://issues.jboss.org/browse/RF-13291
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: resource handling
> Reporter: Brian Leathem
> Assignee: Brian Leathem
> Priority: Blocker
> Fix For: 5.0.0.Alpha2
>
> Original Estimate: 1 hour
> Remaining Estimate: 1 hour
>
> With the application of commit [0855b6|https://github.com/richfaces/richfaces/commit/0855b61d55533ad9c1b3...] resource optimisation is incorrectly omitting some resources. For instance the resource base-component.js is not packaged in packed.js.
> This is may be related to the use of resource libraries (_reslibs_) such as base-component.library.properties that interfere with the Resource Optimisation inspection of resource dependencies.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 2 months
[JBoss JIRA] (RF-13291) Optimized resource ordering is incorrect after recent changes
by Brian Leathem (JIRA)
[ https://issues.jboss.org/browse/RF-13291?page=com.atlassian.jira.plugin.s... ]
Brian Leathem commented on RF-13291:
------------------------------------
I am mistaken: the _rf.BaseComponent_ definition/assignment is missing from packed.js altogether, not simply mis-ordered as I initially described. Changing the title and summary to match.
> Optimized resource ordering is incorrect after recent changes
> -------------------------------------------------------------
>
> Key: RF-13291
> URL: https://issues.jboss.org/browse/RF-13291
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: resource handling
> Reporter: Brian Leathem
> Assignee: Brian Leathem
> Priority: Blocker
> Fix For: 5.0.0.Alpha2
>
> Original Estimate: 1 hour
> Remaining Estimate: 1 hour
>
> With the applilcation of commit [0855b6|https://github.com/richfaces/richfaces/commit/0855b61d55533ad9c1b3...] resource optimisation is incorrectly determining the order of some resources. For instance the resource base-component.js is packaged in packed.js after it is invoked, causing a javascript exception.
> This is due to the use of resource libraries (_reslibs_) such as base-component.library.properties that interfere with the Resource Optimisation inspection of resource dependencies.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 2 months