[JBoss JIRA] Created: (RF-5240) Exception processing in the richfaces custom listeners
by Anton Belevich (JIRA)
Exception processing in the richfaces custom listeners
-------------------------------------------------------
Key: RF-5240
URL: https://jira.jboss.org/jira/browse/RF-5240
Project: RichFaces
Issue Type: Feature Request
Affects Versions: 3.3.0
Reporter: Anton Belevich
Assignee: Anton Belevich
Fix For: Future
exception which could occur in our listeners should be wrapped with AbortProcessingException (see MethodBindingValueChangeListener, MethodExpressionValueChangeListener for the implementation details)
Hint: It's seems we should change componentTag.vm (setProperties) component.vm (getters generation) templates in our component generator for this purpose and implement custom MethodExpressionListeners, MethodBindingListeners like sun do with valueChangeListener, actionListener
--
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, 11 months
[JBoss JIRA] Created: (RF-3305) Calendar: doExpand doesn't work with custom events
by Nick Belaevski (JIRA)
Calendar: doExpand doesn't work with custom events
--------------------------------------------------
Key: RF-3305
URL: http://jira.jboss.com/jira/browse/RF-3305
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.1
Reporter: Nick Belaevski
Assigned To: Pavel Yaschenko
Priority: Minor
Fix For: 3.2.2
<rich:modalPanel id="modalPanelID"...
<f:facet name="header">
<h:outputText value="Heder goes here..." />
</f:facet>
<f:facet name="controls">
<h:graphicImage value="/pics/error.gif" onclick="Richfaces.hideModalPanel('modalPanelID');return false;" />
</f:facet>
...
<rich:componentControl event="onshow" for="calendarID" operation="doExpand"></rich:componentControl>
...
</rich:modalPanel>
...
<rich:calendar id="calendarID"></rich:calendar>
Step 1. Navigate to page contained modalPanel & calendar components.
Step 2. Call modalPanel.
Step 3. Verify calendar activity.
Actual behavior:
Calendar doesn't expand.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 12 months
[JBoss JIRA] Created: (RF-7034) Missing selected items in pickList
by Rainer Flicker (JIRA)
Missing selected items in pickList
----------------------------------
Key: RF-7034
URL: https://jira.jboss.org/jira/browse/RF-7034
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.1
Environment: JDK 1.5.0_11
JBoss AS 4.2.3.GA
Seam 2.1.1.GA
JSF 1.2_09-b01-BETA1
JSF-Facelets 1.1.15.B1
Richfaces 3.1.1.CR2
Reporter: Rainer Flicker
If a pickList reads selected items from a variable in a backing bean, initial values in the list of selected items are missing
after a submit. (Works with 3.3.0.GA)
--- xhtml snippet ---
<rich:pickList value="#{userDetailsManager.selRoleNames}"
sourceListWidth="200px" targetListWidth="200px">
<f:selectItems value="#{userDetailsManager.roleNames}" />
</rich:pickList>
----
--- userDetailsManager snippet ---
private List<SelectItem> roleNames = new ArrayList<SelectItem>();
private List<String> selRoleNames = new ArrayList<String>();
for (Role role : roles) {
roleNames.add(new SelectItem(""+role.getId(), role.getName()));
}
for (Role role : user.getRoles()) {
selRoleNames.add("" + role.getId());
}
----
--
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
15 years
[JBoss JIRA] Created: (RF-8052) problem with framsets and rich:calendar
by Thomas Morper (JIRA)
problem with framsets and rich:calendar
---------------------------------------
Key: RF-8052
URL: https://jira.jboss.org/jira/browse/RF-8052
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.2.SR1, 3.3.2.GA
Environment: Tomcat 6.0.18, Windows (several different versions), Internet Explorer 7 as well as 8
Reporter: Thomas Morper
Our web application is based on a frameset with 3 frames: one ofr the headline, one for the menu tree and the mainFrame with the data the user wants. All pages for the mainFrame are loaded by clicking on an entry of the menu tree where they are included with target=mainFrame.
Since 3.3.2, we have the following problem that only happens at the Internet Explorer (7 or 8) but not with Firefox: when we add a rich:calendar component to the JSF page that is loaded to the mainFrame, all following pages that are slected at the menu tree will not be opened at the mainFrame but in a new browser window. It seems as if the component is destroying the IEs frame mapping. When I remove the rich:calendar from the page, the following pages are correctly opened at the mainFrame.
The problem does not happen with 3.3.1 or earlier, but it happens with 3.3.2.GA as well as 3.3.2.SR1.
--
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
15 years