[JBoss JIRA] Created: (RF-10965) In Rich dataTable, [Enter] in h:outputText submits form
by Michal Huniewicz (JIRA)
In Rich dataTable, [Enter] in h:outputText submits form
-------------------------------------------------------
Key: RF-10965
URL: https://issues.jboss.org/browse/RF-10965
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Affects Versions: 4.0.0.Final
Environment: Windows 7, Firefox 4, JBoss 6
Reporter: Michal Huniewicz
Enter submits form when focus is on h:outputText in a rich:dataTable.
<h:form id="dogForm">
<rich:messages />
<rich:dataTable value="#{dogsBean.allDogs}" var="dog" id="table"
rows="30">
<f:facet name="noData">
<h:outputText value="#{msg['index.table.noData']}" />
</f:facet>
<rich:column filterValue="#{dogsFilteringBean.nameFilter}"
filterExpression="#{fn:containsIgnoreCase(dog.name,dogsFilteringBean.nameFilter)}">
<f:facet name="header">
<h:panelGroup>
<h:outputText value="#{msg['index.table.column.name']}" />
<h:inputText value="#{dogsFilteringBean.nameFilter}"
onkeypress="if (event.keyCode == 13) {return false;} else {return true;}">
<a4j:ajax event="blur" render="table" execute="@this" />
</h:inputText>
</h:panelGroup>
</f:facet>
<h:outputText value="#{dog.name}" />
</rich:column>
</rich:dataTable>
</h:form>
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 5 months
[JBoss JIRA] Created: (RF-11026) Component reference: fix file upload description
by Pavol Pitonak (JIRA)
Component reference: fix file upload description
------------------------------------------------
Key: RF-11026
URL: https://issues.jboss.org/browse/RF-11026
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: doc
Affects Versions: 4.0.0.Final
Reporter: Pavol Pitonak
The Component Reference should be updated because it contains following statement in file upload section. The attribute maxFilesQuantity has not been implemented yet in RichFaces 4 so it can be removed.
{quote}
To limit the maximum size of the uploaded files, define the byte size with the org.richfaces.fileUpload.maxRequestSizes context parameter of the web.xml settings file for the project.
{quote}
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 5 months
[JBoss JIRA] Created: (RF-11021) rich:select atribute selectFirst doesn't work
by Ara Minosian (JIRA)
rich:select atribute selectFirst doesn't work
---------------------------------------------
Key: RF-11021
URL: https://issues.jboss.org/browse/RF-11021
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-input
Affects Versions: 4.0.0.Final
Environment: GAE, Win7-64
Reporter: Ara Minosian
This code does not display first value. Id displays emty item.
{code:xml}
<rich:select id="unitSelect" value="#{editBean.paramEditor1.unitKeyWithRange}" selectFirst="true">
<f:selectItems value="#{editBean.paramEditor1.availableUnits}"/>
</rich:select>
{code}
This code dispays first value
{code:xml}
<h:selectOneMenu id="unitSelect" value="#{editBean.paramEditor1.unitKeyWithRange}">
<f:selectItems value="#{editBean.paramEditor1.availableUnits}"/>
</h:selectOneMenu>
{code}
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 5 months
[JBoss JIRA] Created: (RF-11028) Dynamic extendDataTable not support ajax support
by umanath muthuvel (JIRA)
Dynamic extendDataTable not support ajax support
------------------------------------------------
Key: RF-11028
URL: https://issues.jboss.org/browse/RF-11028
Project: RichFaces
Issue Type: Task
Security Level: Public (Everyone can see)
Components: component-a4j-core, component-tables
Affects Versions: 3.3.3.Final
Environment: Operating system Windows XP, Browser IE-7 and FirFox4
The JDK or JRE you are using, e.g. Sun Microsystems JDK 1.5.0_09
Reporter: umanath muthuvel
Dynamic extendDataTable creation not supporting ajax support
Creating Dynamic binding for rich:extendedDataTable with 2 columns and 5 row of dateList.
And after running my xhtml page the hole data (5 row of data with 2 columns are displayed)
But after I am clicking any row the a4j:support not firing corresponding method. ( But whenever clicking the row the jsf life cycle are printing in consoule)
So I am trying Statically with same data and same a4j:support event and action... this time it firing the corresponding method.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 5 months
[JBoss JIRA] Created: (RF-11031) <rich:popupPanel> autosized attribute does not work in IE7
by Paul Knox (JIRA)
<rich:popupPanel> autosized attribute does not work in IE7
----------------------------------------------------------
Key: RF-11031
URL: https://issues.jboss.org/browse/RF-11031
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component, component-panels-layout-themes
Affects Versions: 4.0.0.Final
Environment: Issue only affects IE7
Reporter: Paul Knox
<rich:popupPanel autosized='true'> does not autosize popup window in IE7. I tried a workaround by setting the autosized=false for IE7 and using the height and width attributes but the height and width attributes seem to override the autosized attribute.
I eventually found a workaround by setting the autosized='true' height='' width='' for all browsers except IE7 (which works, for some reason the height and width attributes are ignored)
For IE7 I set autosized='false' height='670' width='400' which renders ok but if the data in any of my table cells gets larger then this will not render properly.
here is my actual code
<rich:popupPanel id="popupReport" modal="false" resizeable="false"autosized="#{!userBean.internetExplorer7}" height="#{userBean.internetExplorer7 ? '670' : ''}" width="#{userBean.internetExplorer7 ? '400' : ''}" rendered="#{!report.tableOnly}">
.
.
.
.
</rich:popupPanel>
I've included a link to the forum topic.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 5 months
[JBoss JIRA] Created: (RF-11032) fileUpload Upload button not shown in Firefox 2.0
by Jesse Bowes (JIRA)
fileUpload Upload button not shown in Firefox 2.0
-------------------------------------------------
Key: RF-11032
URL: https://issues.jboss.org/browse/RF-11032
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Affects Versions: 4.0.0.Final
Reporter: Jesse Bowes
Uploading a file in Firefox 2.0 using the fileUpload component is not possible. I am able to add a file to the upload component, but the "upload" button never becomes available to click.
The same deployment works in IE6, FF3, FF4, and Chrome.
I have confirmed this issue on the richfaces demo page as well.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 5 months