[JBoss JIRA] Created: (RF-6519) colorPicker: component output value and output color remain unchanged in Google Chrome.
by Mikhail Vitenkov (JIRA)
colorPicker: component output value and output color remain unchanged in Google Chrome.
---------------------------------------------------------------------------------------
Key: RF-6519
URL: https://jira.jboss.org/jira/browse/RF-6519
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.1
Environment: Chrome 1.0.154.43(3.3.1-SNAPSHOT)
Reporter: Mikhail Vitenkov
Assignee: Nick Belaevski
#1. Use following code for reproduction:
<rich:colorPicker value="rgb(255, 250, 240)" flat="false" colorMode="hex" disabled="false"/>
<h:commandButton value="Submit" />
#2. Navigate to page - rgb(255, 250, 240) present in output;
#3. Call popup with rainbow;
#4. Select a color, different from selected, and click "Apply" button.
#5. Verify component output value and color indicator.
Actual behavior:
Output color - rgb(255, 250, 240);
Output color indicator - initial.
--
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
16 years, 12 months
[JBoss JIRA] Created: (RF-6708) extendedDataTable: toolTip is shown in group header for 1th item in group.
by Alexander Dubovsky (JIRA)
extendedDataTable: toolTip is shown in group header for 1th item in group.
--------------------------------------------------------------------------
Key: RF-6708
URL: https://jira.jboss.org/jira/browse/RF-6708
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.1
Environment: 3.3.1.BETA3
Reporter: Alexander Dubovsky
Assignee: Nick Belaevski
Priority: Minor
Source:
<rich:extendedDataTable value="#{exDataTable.value}" var="car"
id="table" width="500px" height="700px" groupingColumn="make">
<rich:column label="model" width="100px" id="model">
<f:facet name="header">
<h:outputText value="model" />
</f:facet>
<h:outputText value="#{car.model}" />
</rich:column>
<rich:column label="make" width="100px" id="make"
sortBy="#{car.make}" selfSorted="true">
<f:facet name="header">
<h:outputText value="make" />
</f:facet>
<h:outputText id="tmake" value="#{car.make}">
<rich:toolTip value="#{car.make}"></rich:toolTip>
</h:outputText>
</rich:column>
<rich:column label="price" width="50px" id="price">
<f:facet name="header">
<h:outputText value="price" />
</f:facet>
<h:outputText value="#{car.price}" />
</rich:column>
</rich:extendedDataTable>
# Navigate mouse on the 1th item in any group => toolTip is not shown. Screen shot 2. It is incorrect.
# Navigate mouse on the header of the selected group => toolTip is shown. Screen shot 1
For all items in group except the 1th toolTip is shown.
--
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
16 years, 12 months