[JBoss JIRA] Created: (RF-11003) Component reference: wrong examples for tooltip
by Pavol Pitonak (JIRA)
Component reference: wrong examples for tooltip
-----------------------------------------------
Key: RF-11003
URL: https://issues.jboss.org/browse/RF-11003
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: doc
Affects Versions: 4.0.0.Final
Reporter: Pavol Pitonak
There are bugs in all examples for rich:tooltip
# rename rich:toolTip to rich:tooltip in all examples
# in Example 13.8. Defining tool-tip content the "Basic Content" sample doesn't work and probably will not work in RF 4.x (see RF-11002)
# in Example 13.9. Attaching the tool-tip put the content inside the component instead of using attribute value
# in Example 13.10. Unattached tool-tips put the content inside the component instead of using attribute value and fix attribute "onclick" of panel
{code:xml}
onclick="#{rich:component('toolTipId')}.show(event);"
{code}
# in Example 13.11. Advanced tool-tip usage put the content inside the component instead of using attribute value and change the direction attribute to "topRight"
# check the text that it describes the examples correctly
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 9 months
[JBoss JIRA] Created: (RF-11001) Component reference: remove a4j:form
by Pavol Pitonak (JIRA)
Component reference: remove a4j:form
------------------------------------
Key: RF-11001
URL: https://issues.jboss.org/browse/RF-11001
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: doc
Affects Versions: 4.0.0.Final
Reporter: Pavol Pitonak
The component reference contains <a4j:form> on several places. Use <h:form> instead of <a4j:form>:
section 9.4.2. Showing and hiding the pop-up
section 9.4.5. Header and controls
section 13.4.2. Attaching the tool-tip to another component
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 9 months
[JBoss JIRA] Created: (RF-10990) paint2d and Seam conversation propagation
by Laurent Grangier (JIRA)
paint2d and Seam conversation propagation
-----------------------------------------
Key: RF-10990
URL: https://issues.jboss.org/browse/RF-10990
Project: RichFaces
Issue Type: Enhancement
Security Level: Public (Everyone can see)
Components: component-output
Affects Versions: 3.3.3.Final
Reporter: Laurent Grangier
It is not possible to propagate the current Seam conversation cross a paint2D image request.
Adding <s:conversationId /> to <rich:paint2d .../> tag has no effect.
I'm not sure if the problems comes from Seam or RichFaces, but this problem should be resolved. That's sometimes useful to have images which takes part of the current conversation.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 9 months
[JBoss JIRA] Created: (RF-10986) Make background gradient in table headers and toolbars configurable
by Martin Vecera (JIRA)
Make background gradient in table headers and toolbars configurable
-------------------------------------------------------------------
Key: RF-10986
URL: https://issues.jboss.org/browse/RF-10986
Project: RichFaces
Issue Type: Feature Request
Security Level: Public (Everyone can see)
Components: skinning
Affects Versions: 3.3.2.SR1
Reporter: Martin Vecera
The background gradient is by default present at table headers and toolbars. The background is a dynamically generated image and its presence in a web page is caused by XML snippets like the following one (part of richfaces-ui.jar:/org/richfaces/skin.xcss):
<u:style name="background-image">
<f:resource xmlns:f="http:/jsf.exadel.com/template" f:key="org.richfaces.renderkit.html.GradientA"/>
</u:style>
This can be overrided by a custom CSS which is a recommended fix - http://community.jboss.org/wiki/RichFacesDataTableBackgroundOut
The big issue here is that you still have the gradient style configured and loaded by your browser, and the background image generated at the server.
It would be great if the background gradient was configurable by a skin property like other attributes (e.g. skin.properties: gradientStyle=NONE).
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 9 months
[JBoss JIRA] Created: (RF-10977) validation should not be processed when @required=false and input is empty
by Nikhil Patil (JIRA)
validation should not be processed when @required=false and input is empty
--------------------------------------------------------------------------
Key: RF-10977
URL: https://issues.jboss.org/browse/RF-10977
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Affects Versions: 4.0.1.Milestone1
Environment: Ubuntu 10.04, Jboss 5.1.0 GA, Mojarra 2.0.4, Richfaces 4 (extracted from richfaces-showcase.war of 2011-04-28)
Reporter: Nikhil Patil
<h:inputText
id="txtContact"
value="#{user.contact}"
required="false"
validatorMessage="Invalid phone number"
maxlength="10">
<f:validateRegex pattern="\d{10}" />
<rich:validator/>
</h:inputText>
Regex validation should not be processed when @required=false and input is empty
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 9 months
[JBoss JIRA] Created: (RF-10974) a4:poll data being called twice
by Martin Sadowski (JIRA)
a4:poll data being called twice
-------------------------------
Key: RF-10974
URL: https://issues.jboss.org/browse/RF-10974
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-a4j-core
Affects Versions: 4.0.0.Final
Environment: Tomcat 7.0.12
Reporter: Martin Sadowski
Bean:
@ManagedBean
@SessionScoped
public class TestBean {
int i = 0;
public String getPollData() {
System.out.println("getPollData()");
return "" + i++;
}
}
test.xhtml:
<a4j:poll interval="10000" data="#{testBean.pollData}" oncomplete="alert(event.data);"/>
Result:
1
3
5
...
-> Twice every polling cycle.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 9 months