[JBoss JIRA] Created: (RF-3496) inplaceSelect: list size too small
by Ilya Shaikovsky (JIRA)
inplaceSelect: list size too small
----------------------------------
Key: RF-3496
URL: http://jira.jboss.com/jira/browse/RF-3496
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.1
Reporter: Ilya Shaikovsky
Assigned To: Vladimir Molotkov
Fix For: 3.2.1
inplace select demo page.
simple.xhtml snippet
change the code to
<rich:inplaceSelect value="#{inplaceComponentsBean.inputValue}"
defaultLabel="Click here to edit">
<f:selectItem itemValue="0" itemLabel="Option 1" />
<f:selectItem itemValue="1" itemLabel="Option 2" />
</rich:inplaceSelect>
open in IE7
if you add one or two options list will be enlarged but not enough vertical scroller still present,.
--
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
17 years, 8 months
[JBoss JIRA] Created: (RF-4034) Validator: message from bundle does not pass to annotation.
by Alexander Dubovsky (JIRA)
Validator: message from bundle does not pass to annotation.
-----------------------------------------------------------
Key: RF-4034
URL: https://jira.jboss.org/jira/browse/RF-4034
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.2
Environment: 3.2.2.BETA2
Reporter: Alexander Dubovsky
Assignee: Nick Belaevski
Attachments: 10.png
Source of page:
<rich:panel>
<f:facet name="header">
<h:outputText>Single input field with label and message. Validated by AJAX on every changing.</h:outputText>
</f:facet>
<h:outputLabel for="ltext" value="#{lengthBean.textDescription}" />
<h:inputText id="ltext" value="#{lengthBean.text}">
<rich:ajaxValidator event="onchange" />
</h:inputText>
<rich:message for="ltext" showDetail="true" showSummary="true" />
</rich:panel>
Annotation from bean:
@Length(max=10,min=4,message="{sizeFailure} !!!")
private String text;
Message from bundle:
sizeFailure=correct range is {min}-{max}
___
# Open page with validated input
# Input only one character
Result: validation error as on attached screen
Expected result: validation error "correct range is 4-10 !!!"
--
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
17 years, 8 months
[JBoss JIRA] Created: (RF-4061) contextMenu: contextMenu for another parent displays for parent with other contextMenu
by Tatyana Romanovich (JIRA)
contextMenu: contextMenu for another parent displays for parent with other contextMenu
--------------------------------------------------------------------------------------
Key: RF-4061
URL: https://jira.jboss.org/jira/browse/RF-4061
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.2
Environment: RF-3.2.2.BETA3
Reporter: Tatyana Romanovich
Assignee: Nick Belaevski
1. Create tested application with two examples for context menu: firs example: parent component has one contextMenu, second: parent component has second contextMenu:
<h:outputText id="text1" value="Some text with context menu1">
<rich:contextMenu>
<rich:menuItem value="a">
<f:param name="cmdParam" value="a" />
</rich:menuItem>
</rich:contextMenu>
</h:outputText>
<h:outputText id="text2" value="Some text with context menu2">
<rich:contextMenu>
<rich:menuItem value="b">
<f:param name="cmdParam" value="b" />
</rich:menuItem>
</rich:contextMenu>
</h:outputText>
2. Run application on the server
3. Try to call context menu for each example
FAILURE: the last context menu appears for both parents
--
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
17 years, 8 months
[JBoss JIRA] Created: (RF-3926) ajaxValidator: using '@Future' & '@Past' annotations always leads to failed validation.
by Mikhail Vitenkov (JIRA)
ajaxValidator: using '@Future' & '@Past' annotations always leads to failed validation.
---------------------------------------------------------------------------------------
Key: RF-3926
URL: https://jira.jboss.org/jira/browse/RF-3926
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.2
Environment: IE6, IE7, FF 3.0, Safari 3.1, Opera 9.5(3.2.2.BETA1)
Reporter: Mikhail Vitenkov
Assignee: Nick Belaevski
Step 1. Add ajaxValidator on the page:
...
<h:outputLabel for="dateValue" value="Future validation:" />
<h:panelGroup>
<h:inputText value="#{validator.dateValue}" id="dateValue">
<rich:ajaxValidator event="onchange"></rich:ajaxValidator>
</h:inputText>
<rich:message for="dateValue" showDetail="true" showSummary="true" />
</h:panelGroup>...
Step 2. Define dateValue in bean:
@Future(message="Future validation failed!")
private String dateValue;
Inside constructor:
.. this.dateValue = (new Date()).toString();
+getter & setter for this field.
Step 3. Navigate on the page, set dateValue to currentDate+1 & verify validation.
Actual behavior:
Validation failed. The same issue for @Past annotation.
--
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
17 years, 8 months