[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, 5 months
[JBoss JIRA] Created: (RF-10945) TabPanel without any Tab: NullPointerException in AbstractTabPanel.getActiveItem()
by Lutz Ulrich (JIRA)
TabPanel without any Tab: NullPointerException in AbstractTabPanel.getActiveItem()
----------------------------------------------------------------------------------
Key: RF-10945
URL: https://issues.jboss.org/browse/RF-10945
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-panels-layout-themes
Affects Versions: 4.0.0.Final
Reporter: Lutz Ulrich
Hello,
when removing the last UITab child from UITabPanel (via AJAX request) a NullPointerException is thrown by AbstractTabPanel.getActiveItem() when re-rending the UITabPanel:
getFirstItem().getName() => cannot work since getFirstItem() returns null
There should be no errors when the UITabPanel is empty.
I fixed that in my local 'copy' of AbstractTabPanel by checking if getFirstItem() returns null. If it is null, getActiveItem() returns null, too.
Seems to work for me. But I didn't do much testing on that, yet.
public String getActiveItem() {
String res = super.getActiveItem();
if (res == null) {
// L. Ulrich, 21.04.2011
// original code
//res = getFirstItem().getName();
// fixed code:
AbstractTogglePanelItemInterface firstItem = getFirstItem();
if (firstItem != null)
{
res = firstItem.getName();
}
// end of fixed code
} else {
AbstractTogglePanelTitledItem item =
(AbstractTogglePanelTitledItem) super.getItemByIndex(super.getChildIndex(res));
if (item.isDisabled()) {
res = getFirstItem().getName();
}
}
return res;
}
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 5 months