[JBoss JIRA] Created: (RF-3720) Wrong adjustment of a dataFilterSlider's right end
by Juergen Zimmermann (JIRA)
Wrong adjustment of a dataFilterSlider's right end
--------------------------------------------------
Key: RF-3720
URL: http://jira.jboss.com/jira/browse/RF-3720
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.1
Environment: JSF RI 1.2_09-BETA1, IE 7 and FF 3.0RC3
Reporter: Juergen Zimmermann
I have this definition for dataFilterSlider:
<rich:dataFilterSlider id="dataFilterSlider"
binding="#{kv.dataFilterSlider}"
sliderListener="#{kv.sliderListener}"
for="kundenTabelle"
forValRef="kv.gefundeneKunden"
filterBy="getKategorie"
startRange="2"
endRange="6"
increment="1"
handleValue="6"
manualInput="true"
onslide="true"
onchange="true"
storeResults="true"
trailer="true"/>
However, the value 5 cannot be reached via dragging the slider. When doing a manual input of 5, this value is positioned at the right end, too. Just like the upper boundary (being the value 6).
This happens with IE 7. A screenshot will be provided. Using FF 3.0RC3 the value 5 even cannot be entered manually.
--
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
16 years, 10 months
[JBoss JIRA] Created: (RF-3580) Ordering list keeps old values.
by Sergey Halipov (JIRA)
Ordering list keeps old values.
-------------------------------
Key: RF-3580
URL: http://jira.jboss.com/jira/browse/RF-3580
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.1
Reporter: Sergey Halipov
1. Create some ordering list component and bind its selection to REQUEST bean.
2. Select some rows, submit selection with ajax commandButton. Selection will be shown in corresponding outputText.
3. Refresh the page, selection in outputText is empty as expected.
4. Press commandButton again without any selection. OLD selection from step 2 is shown.
XHTML code:
<rich:orderingList id="orderingList"
....................
selection="#{orderingListBean.selection}" >
..................
<h:column>
<a4j:commandButton value="Ajax Action" reRender="results" />
</h:column>
.........................
</rich:orderingList>
<h:panelGroup id="results" >
<h:outputText value="#{orderingListBean.selectionString}" id="selection" />
</h:panelGroup>
Java code:
public Collection<Item> getSelection() {
return selection;
}
public void setSelection(Collection<Item> selection) {
this.selection = selection;
}
public String getSelectionString() {
StringBuffer buff = new StringBuffer();
for (Iterator<Item> it = selection.iterator(); it.hasNext();) {
Item item = it.next();
buff.append(item.getName());
if (it.hasNext()) {
buff.append(',');
}
}
return buff.toString();
}
--
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
16 years, 10 months
[JBoss JIRA] Created: (RF-4289) extendedDataTable: Developer Demo: "view cannot be restored" error on each ajax request
by Tsikhon Kuprevich (JIRA)
extendedDataTable: Developer Demo: "view cannot be restored" error on each ajax request
---------------------------------------------------------------------------------------
Key: RF-4289
URL: https://jira.jboss.org/jira/browse/RF-4289
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.2
Environment: dev demo
IE 6
Reporter: Tsikhon Kuprevich
Assignee: Nick Belaevski
1. Perform some actions on the table - sorting, rerendering, changing the order of columns.
2. Refresh the page.
3. Perform any ajax action
=>
HTTP Status 500 -
--------------------------------------------------------------------------------
type Exception report
message
description The server encountered an internal error () that prevented it from fulfilling this request.
exception
javax.servlet.ServletException: viewId:/pages/index.jsf - View /pages/index.jsf could not be restored.
javax.faces.webapp.FacesServlet.service(FacesServlet.java:270)
org.ajax4jsf.webapp.BaseXMLFilter.doXmlFilter(BaseXMLFilter.java:177)
org.ajax4jsf.webapp.BaseFilter.handleRequest(BaseFilter.java:267)
org.ajax4jsf.webapp.BaseFilter.processUploadsAndHandleRequest(BaseFilter.java:380)
org.ajax4jsf.webapp.BaseFilter.doFilter(BaseFilter.java:507)
root cause
javax.faces.application.ViewExpiredException: viewId:/pages/index.jsf - View /pages/index.jsf could not be restored.
com.sun.faces.lifecycle.RestoreViewPhase.execute(RestoreViewPhase.java:186)
com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100)
com.sun.faces.lifecycle.RestoreViewPhase.doPhase(RestoreViewPhase.java:104)
com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118)
javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
org.ajax4jsf.webapp.BaseXMLFilter.doXmlFilter(BaseXMLFilter.java:177)
org.ajax4jsf.webapp.BaseFilter.handleRequest(BaseFilter.java:267)
org.ajax4jsf.webapp.BaseFilter.processUploadsAndHandleRequest(BaseFilter.java:380)
org.ajax4jsf.webapp.BaseFilter.doFilter(BaseFilter.java:507)
note The full stack trace of the root cause is available in the Apache Tomcat/6.0.13 logs.
--------------------------------------------------------------------------------
Apache Tomcat/6.0.13
--
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
16 years, 10 months
[JBoss JIRA] Created: (RF-4045) componentControl: ajax buzzes after Ajax submit if using componentControl with context menu under JSP + MyFaces.
by Alexander Dubovsky (JIRA)
componentControl: ajax buzzes after Ajax submit if using componentControl with context menu under JSP + MyFaces.
----------------------------------------------------------------------------------------------------------------
Key: RF-4045
URL: https://jira.jboss.org/jira/browse/RF-4045
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.2
Environment: JSP + MyFaces
3.2.2.BETA2
Reporter: Alexander Dubovsky
Assignee: Nick Belaevski
Source:
<rich:panelMenu id="ccContextMenuPanelMenuID">
<h:outputText value="click text" />
</rich:panelMenu>
<rich:contextMenu id="ccContextMenuID" >
<rich:menuItem value="tab1">
</rich:menuItem>
<rich:menuSeparator />
<rich:menuItem value="a">
</rich:menuItem>
<rich:menuItem value="b">
</rich:menuItem>
<rich:menuItem value="c">
</rich:menuItem>
</rich:contextMenu>
<rich:componentControl event="onclick"
attachTo="ccContextMenuPanelMenuID" for="ccContextMenuID"
operation="show" />
___
# Open the page (see source above)
# Make ajax submit
Result: ajax buzzes
--
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
16 years, 10 months