[JBoss JIRA] Created: (RF-5320) inputNumberSlider: incorrect slider position with rich:tabPanel
by Tsikhon Kuprevich (JIRA)
inputNumberSlider: incorrect slider position with rich:tabPanel
---------------------------------------------------------------
Key: RF-5320
URL: https://jira.jboss.org/jira/browse/RF-5320
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.0
Environment: jsp
myfaces 1.2.5
tomcat 6
Reporter: Tsikhon Kuprevich
Assignee: Nick Belaevski
<body topmargin=20 leftmargin=20>
<h:form id="form">
<rich:tabPanel switchType="client">
<rich:tab label="First">
Here is tab #1
<rich:inputNumberSlider value="20" />
</rich:tab>
<rich:tab label="Second">
Here is tab #2
<rich:inputNumberSlider value="80" />
</rich:tab>
</rich:tabPanel>
<h:commandButton action="submit" value="Submit" />
<a4j:commandButton reRender="form" value="reRender"></a4j:commandButton>
</h:form>
</body>
Click on second tab
see image attached
--
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
13 years, 9 months
[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, 9 months
[JBoss JIRA] Created: (RF-10791) extendedDataTable: richfaces-showcase selection demo works wrong if dataScroller added
by Ilya Shaikovsky (JIRA)
extendedDataTable: richfaces-showcase selection demo works wrong if dataScroller added
--------------------------------------------------------------------------------------
Key: RF-10791
URL: https://issues.jboss.org/browse/RF-10791
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-tables
Affects Versions: 4.0.0.Final
Reporter: Ilya Shaikovsky
change the page to
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:a4j="http://richfaces.org/a4j"
xmlns:rich="http://richfaces.org/rich">
<h:panelGrid columns="2">
<h:form>
<rich:extendedDataTable
value="#{extTableSelectionBean.inventoryItems}" var="car"
selection="#{extTableSelectionBean.selection}" id="table"
frozenColumns="2" style="height:300px; width:500px;" rows="10">
<a4j:ajax execute="@form"
event="selectionchange"
listener="#{extTableSelectionBean.selectionListener}" render=":res" />
<f:facet name="header">
<h:outputText value="Cars marketplace" />
</f:facet>
<rich:column>
<f:facet name="header">
<h:outputText value="vendor" />
</f:facet>
<h:outputText value="#{car.vendor}" />
</rich:column>
<rich:column>
<f:facet name="header">
<h:outputText value="Model" />
</f:facet>
<h:outputText value="#{car.model}" />
</rich:column>
<rich:column>
<f:facet name="header">
<h:outputText value="Price" />
</f:facet>
<h:outputText value="#{car.price}" />
</rich:column>
<rich:column>
<f:facet name="header">
<h:outputText value="Mileage" />
</f:facet>
<h:outputText value="#{car.mileage}" />
</rich:column>
<rich:column>
<f:facet name="header">
<h:outputText value="VIN Code" />
</f:facet>
<h:outputText value="#{car.vin}" />
</rich:column>
<rich:column>
<f:facet name="header">
<h:outputText value="Items stock" />
</f:facet>
<h:outputText value="#{car.stock}" />
</rich:column>
<rich:column>
<f:facet name="header">
<h:outputText value="Days Live" />
</f:facet>
<h:outputText value="#{car.daysLive}" />
</rich:column>
<f:facet name="footer">
<rich:dataScroller></rich:dataScroller>
</f:facet>
</rich:extendedDataTable>
</h:form>
<a4j:outputPanel id="res">
<rich:panel header="Selected Rows:"
rendered="#{not empty extTableSelectionBean.selectionItems}">
<rich:list type="unordered"
value="#{extTableSelectionBean.selectionItems}" var="sel">
<h:outputText value="#{sel.vendor} - #{sel.model} - #{sel.price}" />
</rich:list>
</rich:panel>
</a4j:outputPanel>
</h:panelGrid>
</ui:composition>
now select record on the first page.
switch to the other page
select single page without any ctrl and shift at new page
result - numerous rows getting selected - FAIL. should be only last selected record.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 9 months