[JBoss JIRA] Created: (RF-6060) toolTip: incorerct displaying for panelBarItem
by Tsikhon Kuprevich (JIRA)
toolTip: incorerct displaying for panelBarItem
----------------------------------------------
Key: RF-6060
URL: https://jira.jboss.org/jira/browse/RF-6060
Project: RichFaces
Issue Type: Bug
Environment: myfaces
tomcat
jsp
FF 3
Reporter: Tsikhon Kuprevich
Assignee: Nick Belaevski
For the code below. The toolTip appears only when the second tab collapsed. If the second panelBarItem opened, toolTip is not displayed.
<rich:panelBar width="300" height="200">
<rich:panelBarItem>
<h:outputText value="Item 1"></h:outputText>
</rich:panelBarItem>
<rich:panelBarItem>
<f:facet name="label">
<h:panelGroup id="panelBarItemTitle">
<h:outputText value="label" />
<rich:toolTip>
<h:outputText value="tooltip content" />
</rich:toolTip>
</h:panelGroup>
</f:facet>
<h:outputText value="panel bar item content" />
</rich:panelBarItem>
<rich:panelBarItem>
<h:outputText value="Item 1"></h:outputText>
</rich:panelBarItem>
</rich:panelBar>
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 9 months
[JBoss JIRA] Created: (RF-6134) inplaceInput: incorrect place of Save and Cancel controls for Controls facet
by Inna Shchibrya (JIRA)
inplaceInput: incorrect place of Save and Cancel controls for Controls facet
----------------------------------------------------------------------------
Key: RF-6134
URL: https://jira.jboss.org/jira/browse/RF-6134
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.0
Environment: FF-3.0, IE-6
Tomcat 6.0
sun RI 1.2.10
jsp
Reporter: Inna Shchibrya
Assignee: Nick Belaevski
Attachments: InplaceInput_controls.png
For example:
<?xml version="1.0" encoding="UTF-8"?>
<jsp:root version="2.1" xmlns:jsp="http://java.sun.com/JSP/Page"
xmlns:c="http://java.sun.com/jsp/jstl/core"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:rich="http://richfaces.org/rich"
xmlns:a4j="http://richfaces.org/a4j">
<jsp:directive.page contentType="text/html;charset=UTF-8"
pageEncoding="UTF-8" />
<jsp:output doctype-root-element="html"
doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"
doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" />
<f:view>
<html xmlns="http://www.w3.org/1999/xhtml">
<body>
<h:form id="formID">
<f:verbatim>
<br />
<br />
</f:verbatim>
This is because such an error can easily be made at programming level, <br />
and while invisible for the user who does not understand or cannot <br />
acquire the source code, many of those
<rich:inplaceInput defaultLabel="Click here to edit"
showControls="true" controlsHorizontalPosition="left"
controlsVerticalPosition="bottom" id="inplaceInputId">
<f:facet name="controls">
<button onclick="$('formID:inplaceInputId').component.save();"
type="button">Save</button>
<button onclick="$('formID:inplaceInputId').component.cancel();"
type="button">Cancel</button>
</f:facet>
</rich:inplaceInput>
are easy to exploit.
</h:form>
</body>
</html>
</f:view>
</jsp:root>
Actual result: Save and Cancel control buttons are at the left of the component.
Click on the component. --> Save and Cancel control icons are appeared.
Expected result: Save and Cancel control buttons should be at the bottom of the component. Save and Cancel control icons shouldn't be appeared.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 9 months
[JBoss JIRA] Created: (RF-6081) DataScroller for an inner table (column values as a table)
by John Masters (JIRA)
DataScroller for an inner table (column values as a table)
----------------------------------------------------------
Key: RF-6081
URL: https://jira.jboss.org/jira/browse/RF-6081
Project: RichFaces
Issue Type: Feature Request
Affects Versions: 3.2.2
Environment: RichFaces 3.2.2
Reporter: John Masters
I have a apache trinidad applicaiton I am porting to RichFaces. Most of the time, I have better UI controls with RichFaces. However, for dataTables, trinidad had a pagination on the full table and any columns that were tables as well. In other words, you could do pagination on the entire table (page1, page2, etc) or if a certain columns values were themselves a table, then you could do pagination of the results just for that column.
When I use richfaces, the scroller does display correctly, and shows the first page of results as expected both on the outer table as well as the inner table (column as a table). The pagination for the outer table works perfectly, but the inner table throws this error.
21:23:27,961 WARN [UIDatascroller] Datascroller campaignlistresult:campaignList:flightTable-:0:flightScroller: The requested page #2 isn't found in the model containing 1 pages. Paging is reset to page #1
I know for sure that that column has more than one page and even the datascroller on that row/column does show the 2 pages and the above error occurs when clicked on the second row.
Hope you can address this at your earliest.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 9 months