[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
15 years, 4 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
15 years, 4 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
15 years, 4 months
[JBoss JIRA] Created: (RF-4388) pickList: incorrect behavior if "required=true"
by Alexander Dubovsky (JIRA)
pickList: incorrect behavior if "required=true"
-----------------------------------------------
Key: RF-4388
URL: https://jira.jboss.org/jira/browse/RF-4388
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.2
Environment: 3.2.2.CR2
Reporter: Alexander Dubovsky
Assignee: Nick Belaevski
# Open page with pickList (source see below)
# Submit page => Required message appears
# Move some item to the right
# Submit page => Required message disappears
# Move all items to the left
# Submit page
Result: items moves to the right, message appears
Items should not move to the right!
Source:
<rich:pickList id="testList" copyAllControlLabel="Add All"
copyControlLabel="Add" listsHeight="90" sourceListWidth="200"
targetListWidth="200" required="true"
requiredMessage="Error input is required.">
<f:selectItem itemLabel="Human Resources" itemValue="1" />
<f:selectItem itemLabel="Product Development" itemValue="2" />
<f:selectItem itemLabel="Marketing" itemValue="3" />
<f:selectItem itemLabel="Sales" itemValue="4" />
</rich:pickList>
<h:commandButton value="submit()" />
<rich:messages></rich:messages>
--
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, 4 months