[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
14 years, 10 months
[JBoss JIRA] Created: (RF-10774) IE9 compatibility issues for 3.3.X
by Jay Balunas (JIRA)
IE9 compatibility issues for 3.3.X
----------------------------------
Key: RF-10774
URL: https://issues.jboss.org/browse/RF-10774
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: compatibility, third-party
Affects Versions: 3.3.3.Final
Reporter: Jay Balunas
Priority: Critical
Fix For: 3.Future
This is an umbrella jira to help track all IE9 specific issues with RichFaces 3.3.X versions. We will try to get any changes into the 3.3.4-SNAPSHOT as soon as possible after the 4.0.0.Final release.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 10 months
[JBoss JIRA] Created: (RF-7134) provide facets for rich:suggestionBox
by nimo stephan (JIRA)
provide facets for rich:suggestionBox
-------------------------------------
Key: RF-7134
URL: https://jira.jboss.org/jira/browse/RF-7134
Project: RichFaces
Issue Type: Feature Request
Affects Versions: 3.3.0
Reporter: nimo stephan
Priority: Minor
I have a rich:suggestionbox coupling with a query. The query is limited to fetch at most 50 rows.
So I need something like a scroller or a paginator within my suggestionbox, which triggers a action to fetch the next 50 rows and update my suggestionbox with these new fetched rows.
I tried to integrate a a4j:commandLink within my suggestionbox as a footer-facet or header-facet, but rich:suggestionbox cannot render these facets:
<rich:suggestionbox ...>
<f:facet name="footer">
<a4j:commandLink action="#{myBean.nextSuggestions}" value="previous suggestions.." />
</f:facet>
<h:column>
..
</h:column>
<f:facet name="footer">
<a4j:commandLink action="#{myBean.nextSuggestions}" value="next suggestions.." />
</f:facet>
</rich:suggestionbox>
for a example of a Navigation within a suggestionBox, look at
http://toolkit.itmill.com/demo/sampler/#Components/Selects/ComboBoxStarts...
--
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
14 years, 10 months
[JBoss JIRA] Created: (RF-8341) CLONE -The Add Button in rich:upload remains disabled even though no item has been uploaded
by Paolo Russian (JIRA)
CLONE -The Add Button in rich:upload remains disabled even though no item has been uploaded
-------------------------------------------------------------------------------------------
Key: RF-8341
URL: https://jira.jboss.org/jira/browse/RF-8341
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-input
Affects Versions: 3.3.1
Environment: Windows Xp
Jboss 4.2.2
Seam 2.2
Reporter: Paolo Russian
Assignee: Pavel Yaschenko
Fix For: 3.3.2.GA
Sometimes when i navigate to my page, I find disabled the add button for the Upload component (Even though i have not uploaded any Item). This is my code below
<rich:fileUpload style="width:100%" id="upload" fileUploadListener="#{newListing.listener}" allowFlash="true" maxFilesQuantity="5" acceptedTypes="jpg, gif, png, bmp">
<a:support event="onuploadcomplete" reRender="info" />
</rich:fileUpload>
--
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
14 years, 10 months