[JBoss JIRA] Created: (RF-6487) ToolTip shows old content in ajax mode.
by Alexander Dubovsky (JIRA)
ToolTip shows old content in ajax mode.
---------------------------------------
Key: RF-6487
URL: https://jira.jboss.org/jira/browse/RF-6487
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.0, 3.3.1
Environment: 3.3.0.GA
3.3.1.SNAPSHOT
Reporter: Alexander Dubovsky
Assignee: Nick Belaevski
Priority: Minor
Source:
<h:outputText id="text" value="ToolTip should be here">
<rich:toolTip mode="ajax" value="#{cComp.val}"></rich:toolTip>
</h:outputText>
<br />
<a4j:commandButton action="#{cComp.action}"
value="change" />
public void action() {
val += "-add";
}
# Point on text => toolTip is shown twice: the 1th time it was empty and placed in left upper corner; the 2th time it shows correct content.
# Click "change" button and point on text again.
Result: toolTip is shown twice: the 1th time it shows old content (from step 1); the 2th time all is OK.
Time interval between two appearances is short but is visible.
--
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, 7 months
[JBoss JIRA] Created: (RF-3493) datascroller: facet pages it is displayed not skins
by Aleksej Yanul (JIRA)
datascroller: facet pages it is displayed not skins
---------------------------------------------------
Key: RF-3493
URL: http://jira.jboss.com/jira/browse/RF-3493
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.1
Reporter: Aleksej Yanul
Assigned To: Nick Belaevski
Attachments: skin.JPG
<ds:datascroller pagesVar="pages" pageIndexVar="index" onpagechange="return confirm('Do you want to go to: ' + event.memo.page + '?')" page="2" for="master" reRender="actionCount, eventCount" rendered="true" fastStep="2" actionListener="#{testBean.onAction}" renderIfSinglePage="#{testBean.renderIfSinglePage}" scrollerListener="#{testBean.doScroll}" maxPages="#{testBean.maxpage}">
<f:facet name="pages">
<h:outputText value="#{index} / #{pages}" />
</f:facet>
</ds:datascroller>
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
16 years, 7 months
[JBoss JIRA] Created: (RF-5483) inplaceSelect: "required" attribute does not work.
by Alexander Dubovsky (JIRA)
inplaceSelect: "required" attribute does not work.
--------------------------------------------------
Key: RF-5483
URL: https://jira.jboss.org/jira/browse/RF-5483
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.0
Environment: 3.3.0.CR1
Reporter: Alexander Dubovsky
Assignee: Nick Belaevski
Code:
<h:messages></h:messages>
<h:form>
<rich:inplaceSelect value="#{custom.value}" label="select" required="true" defaultLabel="select...">
<f:selectItem itemLabel="item_1" itemValue="item_1" />
<f:selectItem itemLabel="item_2" itemValue="item_2" />
<f:selectItem itemLabel="item_3" itemValue="item_3" />
</rich:inplaceSelect>
<h:commandButton value="h submit" />
</h:form>
Open page and click submit button
Result: validation is passed
--
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, 7 months
[JBoss JIRA] Created: (RF-5384) Currency symbol disappears after re-render of formatted currency
by Jonathan Moores (JIRA)
Currency symbol disappears after re-render of formatted currency
----------------------------------------------------------------
Key: RF-5384
URL: https://jira.jboss.org/jira/browse/RF-5384
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.0
Environment: Windows Vista x64, TC 6.0.18, JSF 1.2_10, RF 3.3.0 BETA 4, IE7, FF 3, Chrome
Reporter: Jonathan Moores
After re-render (clicking the save button) the currency symbol is missing.
I can post the bean code as well but its pretty simple.
- The saveBasket method is empty.
- The basketItemModel returns an ArrayList<BasketItem>() wrapped in ListDataModel
- BasketItem is just a bean
I also tried the following code for the euro symbol: &_ #x20ac; &_ euro;
<f:view>
<a4j:outputPanel>
<h:form id="myform">
<h:panelGrid>
<a4j:commandLink id="saveBasketButton" actionListener="#{basketBean.saveBasket}"
styleClass="linkButton pad10"
reRender="myform">
<h:outputText value="Save"/>
</a4j:commandLink>
</h:panelGrid>
<rich:dataTable
id="orderItemsDataTable"
value="#{basketBean.basketItemModel}" var="basketItem"
onRowMouseOver="this.style.backgroundColor='#ECF3FE'"
onRowMouseOut="this.style.backgroundColor='#{a4jSkin.tableBackgroundColor}'"
rowClasses="cur" footerClass="footer" width="100%" rowKeyVar="rowKeyVar">
<rich:column sortable="false" width="75px">
<f:facet name="header"><h:outputText value="Price"
style="font-weight:bold;"/></f:facet>
<h:outputText value="#{basketItem.price}">
<f:convertNumber pattern="€ ##0.00"/>
</h:outputText>
</rich:column>
<rich:column sortable="false" width="75px">
<f:facet name="header"><h:outputText value="Price"
style="font-weight:bold;"/></f:facet>
<h:outputText value="#{basketItem.price}">
<f:convertNumber type="currency" currencySymbol="€" maxFractionDigits="2" minFractionDigits="2"
minIntegerDigits="2" groupingUsed="true"/>
</h:outputText>
</rich:column>
</rich:dataTable>
</h:form>
</a4j:outputPanel>
</f:view>
--
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, 7 months