[JBoss JIRA] Created: (RF-4365) demo site: Wrong link in Plug'n'skin/ Tag Information
by Tatyana Romanovich (JIRA)
demo site: Wrong link in Plug'n'skin/ Tag Information
-----------------------------------------------------
Key: RF-4365
URL: https://jira.jboss.org/jira/browse/RF-4365
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.2
Reporter: Tatyana Romanovich
Assignee: Ilya Shaikovsky
Priority: Minor
1. Run demo site application using 'mvn jetty:run-war' command
FAILURE:
For Plug'n'Skin component tag information can't be loaded ("The information from this tab is generated and incorporated in the richfaces-demo.war file with Maven process. The target page is located under /WEB-INF/tlddoc folder. As soon as you read this text, you have no such folder in your run-time enviroment right now. If you use Jetty to run, use 'mvn jetty:run-war' command. " displays).
--
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, 2 months
[JBoss JIRA] Created: (RF-3953) columns: "filterMethod" doesn't work for dynamic columns.
by Mikhail Vitenkov (JIRA)
columns: "filterMethod" doesn't work for dynamic columns.
---------------------------------------------------------
Key: RF-3953
URL: https://jira.jboss.org/jira/browse/RF-3953
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 filterMethod to bean:
public boolean filterMethod(Object obj) {
Data d = (Data)obj;
if(d.getStr0().startsWith(filterInput)) return true;
return false;
}
filterInput is a String value.
Step 2. Bind rich:columns with method listed above through the 'filterMethod' attribute.
<rich:columns filterMethod="#{columns.filterMethod}"...
Step 3. Add input field for "filterInput" value defined in Step 1:
<h:outputText value="filterMethod"></h:outputText>
<h:inputText value="#{columns.filterInput}"
onchange="submit();" />
Step 4. Navigate to page contained tested dynamic columns.
Step 5. Enter something in "filterMethod" input & click mouse out.
Actual behavior:
Filter method doesn't work. Data in rich:columns remains previous.
--
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, 2 months
[JBoss JIRA] Created: (RF-4006) pickList requiredMessage does not take effect
by krystan honour (JIRA)
pickList requiredMessage does not take effect
---------------------------------------------
Key: RF-4006
URL: https://jira.jboss.org/jira/browse/RF-4006
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.1, 3.2.0.SR1, 3.2.0
Environment: Windows XP/W2K3, IE 6.x, IE 7.x, Mozilla Firefox
Reporter: krystan honour
When setting the requiredMessage on the pickList component with the required attribute set to "true" the requiredMessage, whether hardcoded or an expression does not override the global validators message.
Test code is as follows:
<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>
This functionality works for other rich components and is affecting a live development.
--
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, 2 months