[JBoss JIRA] (RF-12838) RichFaces showcase failure
by Brian Leathem (JIRA)
Brian Leathem created RF-12838:
----------------------------------
Summary: RichFaces showcase failure
Key: RF-12838
URL: https://issues.jboss.org/browse/RF-12838
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Reporter: Brian Leathem
This issue is to track failures of the RichFaces showcase. Please create one sub-issue per failure, with the server log in the sub-issue description, and a comment describing the steps taken to resolve the problem.
--
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
12 years, 11 months
[JBoss JIRA] (RF-12837) Photoalbum: example cleanup
by Lukáš Fryč (JIRA)
Lukáš Fryč created RF-12837:
-------------------------------
Summary: Photoalbum: example cleanup
Key: RF-12837
URL: https://issues.jboss.org/browse/RF-12837
Project: RichFaces
Issue Type: Enhancement
Security Level: Public (Everyone can see)
Components: examples
Reporter: Lukáš Fryč
Assignee: Lukáš Fryč
Fix For: 5.0.0.M1
Photoalbum demo cleanup:
* tasks to be specified
but I have opened this to track changes pushed by Pavol.
--
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
12 years, 11 months
[JBoss JIRA] (RF-11800) Allow to pack custom webapp resources using maven-richfaces-resources-plugin by defining own complete order
by Lukáš Fryč (JIRA)
[ https://issues.jboss.org/browse/RF-11800?page=com.atlassian.jira.plugin.s... ]
Lukáš Fryč updated RF-11800:
----------------------------
Description:
{{maven-richfaces-resources-plugin}} is right now able to scan for {{@ResourceDependency}} occurences, order them and generate referenced resources.
In applications, there are still resources which aren't referenced by components (using {{@ResourceDependency}}).
It should be possible to provide this plugin parameter for file which would list all the resources which should be packed/compressed together with other resources.
This list will also provide ordering (because it can include dependencies on resources used by RF components), e.g.:
{code}
# Styles
skinning.css
my-custom.css
# Scripts
jquery.js
my-custom.js
{code}
This feature assumes that user is using JSF resource loading mechanism for referencing external resources ({{<h:outputScript />}} / {{<h:outputStylesheet />}}).
was:
{{maven-richfaces-resources-plugin}} is right now able to scan for {{@ResourceDependency}} occurences, order them and generate referenced resources.
In applications, there are still resources which aren't referenced by components (using {{@ResourceDependency}}).
It should be possible to provide this plugin parameter for file which would list all the resources which should be packed/compressed together with other resources.
This list will also provide ordering (because it can include dependencies on resources used by RF components), e.g.:
{code}
# Scripts
jquery.js
my-custom.js
# Styles
skinning.css
my-custom.css
{code}
This feature assumes that user is using JSF resource loading mechanism for referencing external resources ({{<h:outputScript />}} / {{<h:outputStylesheet />}}).
> Allow to pack custom webapp resources using maven-richfaces-resources-plugin by defining own complete order
> -----------------------------------------------------------------------------------------------------------
>
> Key: RF-11800
> URL: https://issues.jboss.org/browse/RF-11800
> Project: RichFaces
> Issue Type: Feature Request
> Security Level: Public(Everyone can see)
> Components: resource handling
> Affects Versions: 4.1.0.CR2
> Reporter: Lukáš Fryč
> Fix For: 5-Tracking
>
>
> {{maven-richfaces-resources-plugin}} is right now able to scan for {{@ResourceDependency}} occurences, order them and generate referenced resources.
> In applications, there are still resources which aren't referenced by components (using {{@ResourceDependency}}).
> It should be possible to provide this plugin parameter for file which would list all the resources which should be packed/compressed together with other resources.
> This list will also provide ordering (because it can include dependencies on resources used by RF components), e.g.:
> {code}
> # Styles
> skinning.css
> my-custom.css
> # Scripts
> jquery.js
> my-custom.js
> {code}
> This feature assumes that user is using JSF resource loading mechanism for referencing external resources ({{<h:outputScript />}} / {{<h:outputStylesheet />}}).
--
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
12 years, 11 months
[JBoss JIRA] (RF-12809) Richfaces-related examples should use -with-richfaces BOM
by Jan Papousek (JIRA)
[ https://issues.jboss.org/browse/RF-12809?page=com.atlassian.jira.plugin.s... ]
Jan Papousek commented on RF-12809:
-----------------------------------
This issue is also related to simpleapp archetype and showcase.
> Richfaces-related examples should use -with-richfaces BOM
> ---------------------------------------------------------
>
> Key: RF-12809
> URL: https://issues.jboss.org/browse/RF-12809
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: examples
> Reporter: Tomas Repel
> Fix For: 4.3.2, 5.0.0.M2
>
>
> There is jboss-javaee-6.0-with-richfaces BOM, I think this should be used instead of richfaces-bom in case that jboss-javaee-6.0 BOM is required as well. This holds for helloworld-rf, kitchensink-rf and richfaces-validation. In case of helloworld-rf it is sufficient the dependencyManagement section to contain only -with-richfaces BOM, the jboss-javaee-6.0 BOM can be removed completely.
--
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
12 years, 11 months
[JBoss JIRA] (RF-12836) Component control doesn't work when a button is disabled
by Lukáš Fryč (JIRA)
[ https://issues.jboss.org/browse/RF-12836?page=com.atlassian.jira.plugin.s... ]
Lukáš Fryč updated RF-12836:
----------------------------
Description:
I'm trying to add a rich:componentControl to show a popup when a butotn is clicked, but when the button is disabled it doesn't work.
{code}
<h:commandButton id="delete-all-button" value="#{msgs.geral_excluir_selecionados}"
rendered="#{bean.dataModel.rowCount != 0}"
type="button" disabled="true">
<rich:componentControl event="click" target="confirm-popup" operation="show">
<a4j:param noEscape="true" value="event" />
<rich:hashParam>
<f:param name="width" value="500" />
<f:param name="height" value="300" />
<f:param name="minWidth" value="300" />
<f:param name="minHeight" value="150" />
<a4j:param noEscape="true" name="left" value="(jQuery(window).width()/2)-250" />
<a4j:param noEscape="true" name="top" value="(jQuery(window).height()/2)-150" />
</rich:hashParam>
</rich:componentControl>
</h:commandButton>
{code}
If I remove the disabled attribute it works.
Issue on the forum: https://community.jboss.org/thread/222320
was:
I'm trying to add a rich:componentControl to show a popup when a butotn is clicked, but when the button is disabled it doesn't work.
<h:commandButton id="delete-all-button" value="#{msgs.geral_excluir_selecionados}"
rendered="#{bean.dataModel.rowCount != 0}"
type="button" disabled="true">
<rich:componentControl event="click" target="confirm-popup" operation="show">
<a4j:param noEscape="true" value="event" />
<rich:hashParam>
<f:param name="width" value="500" />
<f:param name="height" value="300" />
<f:param name="minWidth" value="300" />
<f:param name="minHeight" value="150" />
<a4j:param noEscape="true" name="left" value="(jQuery(window).width()/2)-250" />
<a4j:param noEscape="true" name="top" value="(jQuery(window).height()/2)-150" />
</rich:hashParam>
</rich:componentControl>
</h:commandButton>
If I remove the disabled attribute it works.
Issue on the forum: https://community.jboss.org/thread/222320
> Component control doesn't work when a button is disabled
> --------------------------------------------------------
>
> Key: RF-12836
> URL: https://issues.jboss.org/browse/RF-12836
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-panels-layout-themes
> Affects Versions: 4.3.0.Final
> Reporter: Migore S
>
> I'm trying to add a rich:componentControl to show a popup when a butotn is clicked, but when the button is disabled it doesn't work.
> {code}
> <h:commandButton id="delete-all-button" value="#{msgs.geral_excluir_selecionados}"
> rendered="#{bean.dataModel.rowCount != 0}"
> type="button" disabled="true">
> <rich:componentControl event="click" target="confirm-popup" operation="show">
> <a4j:param noEscape="true" value="event" />
> <rich:hashParam>
> <f:param name="width" value="500" />
> <f:param name="height" value="300" />
> <f:param name="minWidth" value="300" />
> <f:param name="minHeight" value="150" />
> <a4j:param noEscape="true" name="left" value="(jQuery(window).width()/2)-250" />
> <a4j:param noEscape="true" name="top" value="(jQuery(window).height()/2)-150" />
> </rich:hashParam>
> </rich:componentControl>
> </h:commandButton>
> {code}
> If I remove the disabled attribute it works.
> Issue on the forum: https://community.jboss.org/thread/222320
--
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
12 years, 11 months
[JBoss JIRA] (RF-12836) Component control doesn't work when a button is disabled
by SBS JIRA Integration (JIRA)
[ https://issues.jboss.org/browse/RF-12836?page=com.atlassian.jira.plugin.s... ]
SBS JIRA Integration updated RF-12836:
--------------------------------------
Forum Reference: https://community.jboss.org/message/801994#801994
> Component control doesn't work when a button is disabled
> --------------------------------------------------------
>
> Key: RF-12836
> URL: https://issues.jboss.org/browse/RF-12836
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-panels-layout-themes
> Affects Versions: 4.3.0.Final
> Reporter: Migore S
>
> I'm trying to add a rich:componentControl to show a popup when a butotn is clicked, but when the button is disabled it doesn't work.
> <h:commandButton id="delete-all-button" value="#{msgs.geral_excluir_selecionados}"
> rendered="#{bean.dataModel.rowCount != 0}"
> type="button" disabled="true">
> <rich:componentControl event="click" target="confirm-popup" operation="show">
> <a4j:param noEscape="true" value="event" />
> <rich:hashParam>
> <f:param name="width" value="500" />
> <f:param name="height" value="300" />
> <f:param name="minWidth" value="300" />
> <f:param name="minHeight" value="150" />
> <a4j:param noEscape="true" name="left" value="(jQuery(window).width()/2)-250" />
> <a4j:param noEscape="true" name="top" value="(jQuery(window).height()/2)-150" />
> </rich:hashParam>
> </rich:componentControl>
> </h:commandButton>
> If I remove the disabled attribute it works.
> Issue on the forum: https://community.jboss.org/thread/222320
--
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
12 years, 11 months
[JBoss JIRA] (RF-12836) Component control doesn't work when a button is disabled
by Migore S (JIRA)
Migore S created RF-12836:
-----------------------------
Summary: Component control doesn't work when a button is disabled
Key: RF-12836
URL: https://issues.jboss.org/browse/RF-12836
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-panels-layout-themes
Affects Versions: 4.3.0.Final
Reporter: Migore S
I'm trying to add a rich:componentControl to show a popup when a butotn is clicked, but when the button is disabled it doesn't work.
<h:commandButton id="delete-all-button" value="#{msgs.geral_excluir_selecionados}"
rendered="#{bean.dataModel.rowCount != 0}"
type="button" disabled="true">
<rich:componentControl event="click" target="confirm-popup" operation="show">
<a4j:param noEscape="true" value="event" />
<rich:hashParam>
<f:param name="width" value="500" />
<f:param name="height" value="300" />
<f:param name="minWidth" value="300" />
<f:param name="minHeight" value="150" />
<a4j:param noEscape="true" name="left" value="(jQuery(window).width()/2)-250" />
<a4j:param noEscape="true" name="top" value="(jQuery(window).height()/2)-150" />
</rich:hashParam>
</rich:componentControl>
</h:commandButton>
If I remove the disabled attribute it works.
Issue on the forum: https://community.jboss.org/thread/222320
--
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
12 years, 11 months