[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, 9 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, 9 months
[JBoss JIRA] Created: (RF-4748) Order of files using FileUpload Component
by Ravi Kiran Bhaskar (JIRA)
Order of files using FileUpload Component
-----------------------------------------
Key: RF-4748
URL: https://jira.jboss.org/jira/browse/RF-4748
Project: RichFaces
Issue Type: Feature Request
Affects Versions: 3.3.0, Future, Wishes
Environment: All Platforms & OS
Reporter: Ravi Kiran Bhaskar
if I am uploading files via rich:fileUpload and the upload dialog box shows the
1.jpg
2.jpg
3.jpg
4.jpg
And I select all files top-down the order in which the files show up in the fileupload screen is
4.jpg
1.jpg
2.jpg
3.jpg
(Note that the last pic 4.jpg ends up first)
and If I select bottom up i.e 4.jpg through 1.jpg then it shows up in correct order in the fileuploadscreen like the following
1.jpg
2.jpg
3.jpg
4.jpg
Is there any way which can give correct ordering when selected top-down ? Sorting files by names after uploading might not be an option in some cases where the application might not know ahead of time whether the names are numeric/alphanumeric.
If richfaces ends up implementing sorting, it would also be wiser to implement sorting by name/type/size/starts with etc to make the component more useful for all types of applications/scenarios.
Thanking you in anticipation,
Ravi
--
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, 9 months
[JBoss JIRA] Created: (RF-5223) rich:listShuttle not firing onlistchanged event
by Jonathan Moores (JIRA)
rich:listShuttle not firing onlistchanged event
-----------------------------------------------
Key: RF-5223
URL: https://jira.jboss.org/jira/browse/RF-5223
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.0
Environment: Windows Vista x64 business, JSF 1.2_10, RF 3.3.0 BETA 2
Reporter: Jonathan Moores
Trying to attach a4j:support to the onlistchanged event and nothing is firing. I tried the attribute too (removed a4j:support leaving only attribute). Also no joy.
<rich:listShuttle id="customerListShuffle1" sourceValue="#{documentBean.availableCustomers}" rows="25"
listsHeight="150" onlistchanged="alert('listChanged');"
targetValue="#{documentBean.current.customers}" var="customer"
sourceCaptionLabel="Available Customers"
targetCaptionLabel="Assigned Customers" orderControlsVisible="false"
converter="customerConverter" >
<a4j:support event="onlistchanged" reRender="emailToListShuffle" actionListener="#{documentBean.listChanged}" onsubmit="alert('test')"/>
<rich:column visible="false">
<h:outputText value="#{customer.custId}"/>
</rich:column>
<rich:column>
<h:outputText value="#{customer.custName}"/>
</rich:column>
</rich:listShuttle>
--
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, 9 months
[JBoss JIRA] Created: (RF-5324) Editor: JS error on page under Firefox.
by Alexander Dubovsky (JIRA)
Editor: JS error on page under Firefox.
---------------------------------------
Key: RF-5324
URL: https://jira.jboss.org/jira/browse/RF-5324
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.0
Environment: 3.3.0.BETA3
Reporter: Alexander Dubovsky
Assignee: Nick Belaevski
JS Error in Mozilla FF 3.0.4 on page with rich:editor:
Permission denied to get property XULElement.accessibleType
setupIframe()()tiny_mce...rc.js.jsf (line 7068)
init()()tiny_mce...rc.js.jsf (line 7055)
(?)()()tiny_mce...rc.js.jsf (line 6875)
(?)()()tiny_mce...rc.js.jsf (line 4633)
allDone()tiny_mce...rc.js.jsf (line 4685)
success()()tiny_mce...rc.js.jsf (line 4704)
ready()tiny_mce...rc.js.jsf (line 899)
[Break on this error] d.close();
Source:
<h:form>
<rich:editor></rich:editor>
</h:form>
--
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