[JBoss JIRA] (RF-13148) RichFaces project from archetype can not be built without JBoss repositories
by Lukáš Fryč (JIRA)
[ https://issues.jboss.org/browse/RF-13148?page=com.atlassian.jira.plugin.s... ]
Lukáš Fryč commented on RF-13148:
---------------------------------
My only guess is that it is needed because of resolution of [richfaces.jar|https://github.com/richfaces/richfaces-archetypes/blob/mast...]
{code}
<!-- Import the RichFaces library -->
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>richfaces</artifactId>
<version>${version.richfaces}</version>
</dependency>
{code}
I can't see how this usage could be different from RF4.
[~jhuska], have you checked whether this is a regression from RF4.3.4?
> RichFaces project from archetype can not be built without JBoss repositories
> ----------------------------------------------------------------------------
>
> Key: RF-13148
> URL: https://issues.jboss.org/browse/RF-13148
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: archetype, build/distribution
> Affects Versions: 5.0.0.Alpha1
> Reporter: Juraj Húska
> Priority: Blocker
> Fix For: 5.0.0.Alpha2
>
> Original Estimate: 1 hour
> Remaining Estimate: 1 hour
>
> Projects created from RichFaces archetypes can not be built without JBoss repositories (using just Maven Central).
> The reason is that they depend on {{org.jboss.test-jsf:jsf-test:pom:1.1.6}} which is deployed only to JBoss repos.
--
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, 5 months
[JBoss JIRA] (RF-13259) DataTable rowClasses with columnGroup is not rendered
by Juraj Húska (JIRA)
[ https://issues.jboss.org/browse/RF-13259?page=com.atlassian.jira.plugin.s... ]
Juraj Húska updated RF-13259:
-----------------------------
Assignee: (was: Juraj Húska)
> DataTable rowClasses with columnGroup is not rendered
> -----------------------------------------------------
>
> Key: RF-13259
> URL: https://issues.jboss.org/browse/RF-13259
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component
> Affects Versions: 4.3.0.Final, 5.0.0.Alpha1
> Environment: java 6, java 7,
> all browsers
> JBoss AS 7.1.1.Final
> Reporter: Luca Stancapiano
>
> This is my page:
> {code}
> <rich:dataTable id="postsList" value="#{topic.threadsDataModel}" rowClasses="oddRow,noStyle">
> <rich:columnGroup>
> <rich:column styleClass="forumpostleftcolumn">...</rich:column>
> <rich:column>...</rich:column>
> <rich:columnGroup>
> <rich:columnGroup>
> <rich:column styleClass="forumpostleftcolumn">...</rich:column>
> <rich:column">...</rich:column>
> <rich:columnGroup>
> </rich:dataTable>
> {code}
> I expect that the styes oddRow and noStyle are rendered inside the rows but nothing happens. Seems that rowClasses attribute cannot be used with rich:columnGroup.
>
--
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, 5 months
[JBoss JIRA] (RF-13259) DataTable rowClasses with columnGroup is not rendered
by Juraj Húska (JIRA)
[ https://issues.jboss.org/browse/RF-13259?page=com.atlassian.jira.plugin.s... ]
Juraj Húska updated RF-13259:
-----------------------------
Environment:
java 6, java 7,
all browsers
JBoss AS 7.1.1.Final
was:java 6
> DataTable rowClasses with columnGroup is not rendered
> -----------------------------------------------------
>
> Key: RF-13259
> URL: https://issues.jboss.org/browse/RF-13259
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component
> Affects Versions: 4.3.0.Final, 5.0.0.Alpha1
> Environment: java 6, java 7,
> all browsers
> JBoss AS 7.1.1.Final
> Reporter: Luca Stancapiano
> Assignee: Juraj Húska
>
> This is my page:
> {code}
> <rich:dataTable id="postsList" value="#{topic.threadsDataModel}" rowClasses="oddRow,noStyle">
> <rich:columnGroup>
> <rich:column styleClass="forumpostleftcolumn">...</rich:column>
> <rich:column>...</rich:column>
> <rich:columnGroup>
> <rich:columnGroup>
> <rich:column styleClass="forumpostleftcolumn">...</rich:column>
> <rich:column">...</rich:column>
> <rich:columnGroup>
> </rich:dataTable>
> {code}
> I expect that the styes oddRow and noStyle are rendered inside the rows but nothing happens. Seems that rowClasses attribute cannot be used with rich:columnGroup.
>
--
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, 5 months
[JBoss JIRA] (RF-13259) DataTable rowClasses with columnGroup is not rendered
by Juraj Húska (JIRA)
[ https://issues.jboss.org/browse/RF-13259?page=com.atlassian.jira.plugin.s... ]
Juraj Húska updated RF-13259:
-----------------------------
Workaround Description:
# Simulate {{<r:columnGroup>}} behavior with {{r:column}} attribute {{breakRowBefore}} set to {{true}}
# in the reported code it would look like:
{code:xml}
<rich:dataTable id="postsList" value="#{topic.threadsDataModel}" rowClasses="oddRow,noStyle">
<rich:column styleClass="forumpostleftcolumn">...</rich:column>
<rich:column>...</rich:column>
<rich:column styleClass="forumpostleftcolumn" breakRowBefore="true">...</rich:column>
<rich:column">...</rich:column>
</rich:dataTable>
{code}
> DataTable rowClasses with columnGroup is not rendered
> -----------------------------------------------------
>
> Key: RF-13259
> URL: https://issues.jboss.org/browse/RF-13259
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component
> Affects Versions: 4.3.0.Final
> Environment: java 6
> Reporter: Luca Stancapiano
> Assignee: Juraj Húska
>
> This is my page:
> {code}
> <rich:dataTable id="postsList" value="#{topic.threadsDataModel}" rowClasses="oddRow,noStyle">
> <rich:columnGroup>
> <rich:column styleClass="forumpostleftcolumn">...</rich:column>
> <rich:column>...</rich:column>
> <rich:columnGroup>
> <rich:columnGroup>
> <rich:column styleClass="forumpostleftcolumn">...</rich:column>
> <rich:column">...</rich:column>
> <rich:columnGroup>
> </rich:dataTable>
> {code}
> I expect that the styes oddRow and noStyle are rendered inside the rows but nothing happens. Seems that rowClasses attribute cannot be used with rich:columnGroup.
>
--
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, 5 months
[JBoss JIRA] (RF-13259) DataTable rowClasses with columnGroup is not rendered
by Juraj Húska (JIRA)
[ https://issues.jboss.org/browse/RF-13259?page=com.atlassian.jira.plugin.s... ]
Juraj Húska updated RF-13259:
-----------------------------
Affects Version/s: 5.0.0.Alpha1
> DataTable rowClasses with columnGroup is not rendered
> -----------------------------------------------------
>
> Key: RF-13259
> URL: https://issues.jboss.org/browse/RF-13259
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component
> Affects Versions: 4.3.0.Final, 5.0.0.Alpha1
> Environment: java 6
> Reporter: Luca Stancapiano
> Assignee: Juraj Húska
>
> This is my page:
> {code}
> <rich:dataTable id="postsList" value="#{topic.threadsDataModel}" rowClasses="oddRow,noStyle">
> <rich:columnGroup>
> <rich:column styleClass="forumpostleftcolumn">...</rich:column>
> <rich:column>...</rich:column>
> <rich:columnGroup>
> <rich:columnGroup>
> <rich:column styleClass="forumpostleftcolumn">...</rich:column>
> <rich:column">...</rich:column>
> <rich:columnGroup>
> </rich:dataTable>
> {code}
> I expect that the styes oddRow and noStyle are rendered inside the rows but nothing happens. Seems that rowClasses attribute cannot be used with rich:columnGroup.
>
--
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, 5 months
[JBoss JIRA] (RF-13259) DataTable rowClasses with columnGroup is not rendered
by Juraj Húska (JIRA)
[ https://issues.jboss.org/browse/RF-13259?page=com.atlassian.jira.plugin.s... ]
Juraj Húska commented on RF-13259:
----------------------------------
I *have reproduced* the issue.
The facelet with reproduction is [here|https://github.com/richfaces/richfaces-qa/blob/master/metamer/applic...].
Steps to reproduce:
# build metamer
# deploy it e.g. on JBoss AS 7.1.1.Final
# load: http://localhost:8080/metamer/faces/components/richColumnGroup/RF-13259.x...
# see that styles are not applied: odd row should be yellow, even ones red.
# see that rows do not have rendered classes {{oddRow}} or {{noStyle}}.
Workaround added to the workaround section.
> DataTable rowClasses with columnGroup is not rendered
> -----------------------------------------------------
>
> Key: RF-13259
> URL: https://issues.jboss.org/browse/RF-13259
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component
> Affects Versions: 4.3.0.Final
> Environment: java 6
> Reporter: Luca Stancapiano
> Assignee: Juraj Húska
>
> This is my page:
> {code}
> <rich:dataTable id="postsList" value="#{topic.threadsDataModel}" rowClasses="oddRow,noStyle">
> <rich:columnGroup>
> <rich:column styleClass="forumpostleftcolumn">...</rich:column>
> <rich:column>...</rich:column>
> <rich:columnGroup>
> <rich:columnGroup>
> <rich:column styleClass="forumpostleftcolumn">...</rich:column>
> <rich:column">...</rich:column>
> <rich:columnGroup>
> </rich:dataTable>
> {code}
> I expect that the styes oddRow and noStyle are rendered inside the rows but nothing happens. Seems that rowClasses attribute cannot be used with rich:columnGroup.
>
--
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, 5 months
[JBoss JIRA] (RF-13148) RichFaces project from archetype can not be built without JBoss repositories
by Brian Leathem (JIRA)
[ https://issues.jboss.org/browse/RF-13148?page=com.atlassian.jira.plugin.s... ]
Brian Leathem commented on RF-13148:
------------------------------------
[~lfryc] Do you have an understadning of why this is a problem for the RF 5 archetype, but not the RF 4 one? What changed w.r.t. this dependency?
> RichFaces project from archetype can not be built without JBoss repositories
> ----------------------------------------------------------------------------
>
> Key: RF-13148
> URL: https://issues.jboss.org/browse/RF-13148
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: archetype, build/distribution
> Affects Versions: 5.0.0.Alpha1
> Reporter: Juraj Húska
> Priority: Blocker
> Fix For: 5.0.0.Alpha2
>
> Original Estimate: 1 hour
> Remaining Estimate: 1 hour
>
> Projects created from RichFaces archetypes can not be built without JBoss repositories (using just Maven Central).
> The reason is that they depend on {{org.jboss.test-jsf:jsf-test:pom:1.1.6}} which is deployed only to JBoss repos.
--
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, 5 months
[JBoss JIRA] (RF-13148) RichFaces project from archetype can not be built without JBoss repositories
by Brian Leathem (JIRA)
[ https://issues.jboss.org/browse/RF-13148?page=com.atlassian.jira.plugin.s... ]
Brian Leathem edited comment on RF-13148 at 10/18/13 1:17 AM:
--------------------------------------------------------------
[~lfryc] Do you have an understanding of why this is a problem for the RF 5 archetype, but not the RF 4 one? What changed w.r.t. this dependency?
was (Author: bleathem):
[~lfryc] Do you have an understadning of why this is a problem for the RF 5 archetype, but not the RF 4 one? What changed w.r.t. this dependency?
> RichFaces project from archetype can not be built without JBoss repositories
> ----------------------------------------------------------------------------
>
> Key: RF-13148
> URL: https://issues.jboss.org/browse/RF-13148
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: archetype, build/distribution
> Affects Versions: 5.0.0.Alpha1
> Reporter: Juraj Húska
> Priority: Blocker
> Fix For: 5.0.0.Alpha2
>
> Original Estimate: 1 hour
> Remaining Estimate: 1 hour
>
> Projects created from RichFaces archetypes can not be built without JBoss repositories (using just Maven Central).
> The reason is that they depend on {{org.jboss.test-jsf:jsf-test:pom:1.1.6}} which is deployed only to JBoss repos.
--
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, 5 months
[JBoss JIRA] (RF-13272) Manage the RichFaces jquery.js dependency with RichWidgets
by Brian Leathem (JIRA)
[ https://issues.jboss.org/browse/RF-13272?page=com.atlassian.jira.plugin.s... ]
Brian Leathem updated RF-13272:
-------------------------------
Sprint: 5.0.0.Alpha2 - Sprint 3
> Manage the RichFaces jquery.js dependency with RichWidgets
> ----------------------------------------------------------
>
> Key: RF-13272
> URL: https://issues.jboss.org/browse/RF-13272
> Project: RichFaces
> Issue Type: Feature Request
> Security Level: Public(Everyone can see)
> Components: third-party
> Reporter: Brian Leathem
> Assignee: Brian Leathem
> Fix For: 5.0.0.Alpha2
>
> Original Estimate: 30 minutes
> Remaining Estimate: 30 minutes
>
> The jQuery UI dependencies are currently set within RichWidgets and copied into RichFaces via a grunt task.
> The jQuery.js dpendency should be similarly managed. While making this change, the jQuery.js library should be changed to _com.jquery_.
--
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, 5 months