[JBoss JIRA] Created: (RF-6956) inputNumberSlider and reRender
by Fab Mars (JIRA)
inputNumberSlider and reRender
------------------------------
Key: RF-6956
URL: https://jira.jboss.org/jira/browse/RF-6956
Project: RichFaces
Issue Type: Bug
Components: component-input
Affects Versions: 3.3.0
Environment: RF3.3.0, Mojara 1.2_12, Facelets, Glassfish V2.1
Reporter: Fab Mars
I have a combobox next to an inputNumberSlider.
When the combo changes, the range, step and value of the slider must scale (this is some sort of unit converter thing)
<h:selectOneMenu id="unit" value="#{shippingView.unit}" disabled="#{shippingView.allWeights}" converter="SelectCodableConverter">
<f:selectItems value="#{shippingView.unitItems}"/>
<a4j:support event="onchange" reRender="measure"/>
</h:selectOneMenu>
<rich:inputNumberSlider id="measure" label="Value" value="#{shippingView.value}" width="300" maxValue="#{shippingView.range}" step="#{shippingView.step}" inputSize="5" maxlength="5" required="true" disabled="#{shippingView.allWeights}">
<f:validateLength maximum="5"/>
<a4j:support event="onchange" actionListener="#{shippingView.doSelectShippings}" ajaxSingle="true" reRender="shippingList"/>
</rich:inputNumberSlider>
Problem is, after I programatically changed the slider's value, it's reset to the previous value, before the component is rerendered.
ShippingViewHandler.setValue(int) line: 100
NativeMethodAccessorImpl.invoke0(Method, Object, Object[]) line: not available [native method]
NativeMethodAccessorImpl.invoke(Object, Object[]) line: 39
DelegatingMethodAccessorImpl.invoke(Object, Object[]) line: 25
Method.invoke(Object, Object...) line: 597
BeanELResolver.setValue(ELContext, Object, Object, Object) line: 372
FacesCompositeELResolver(CompositeELResolver).setValue(ELContext, Object, Object, Object) line: 315
FacesCompositeELResolver.setValue(ELContext, Object, Object, Object) line: 100
AstValue.setValue(EvaluationContext, Object) line: 167
ValueExpressionImpl.setValue(ELContext, Object) line: 273
TagValueExpression.setValue(ELContext, Object) line: 93
HtmlInputNumberSlider(UIInput).updateModel(FacesContext) line: 771
HtmlInputNumberSlider(UIInput).processUpdates(FacesContext) line: 703
Thanks for checking it out.
--
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, 11 months
[JBoss JIRA] Created: (RF-2517) Drag-n-Drop between Tree and a Panel with drag/dropSupport
by Ralf Loechte (JIRA)
Drag-n-Drop between Tree and a Panel with drag/dropSupport
----------------------------------------------------------
Key: RF-2517
URL: http://jira.jboss.com/jira/browse/RF-2517
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.1.4
Reporter: Ralf Loechte
Fix For: 3.2.0
I have a rich:tree with drag-n-drop and a panel with dropSupport plus a dataTable which columns have a dragSupport. The tree lies in a t:div with style overflow=auto to be srollable in case that the tree becomes very big. Dragging elements between the tree and the panel works fine but once you drag/drop an element within the tree you cannot drag/drop elements between the tree and the panel. It seems to be that the drag-elements will be droped on the tree even the mouse is over the drop-panel. Astonishingly It works if you remove overflow=auto in the div.
<t:div style="overflow=auto;">
<rich:tree>
...
</t:div>
<t:div>
<rich:panel>
<rich:dropSupport>
...
</rich:dropSupport>
<h:dataTable ...>
<h:column ...>
<a4j:outputPanel>
<rich:dragSupport ...>
</rich:dragSupport>
<h:outputText ...>
</a4j:outputPanel>
</h:column>
</h:dataTable>
</rich:panel>
</t:div>
--
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, 11 months
[JBoss JIRA] Created: (RF-5290) FileUpload component with flash turned fails to upload in SSL mode with self signed certificate
by Brian Couchman (JIRA)
FileUpload component with flash turned fails to upload in SSL mode with self signed certificate
-----------------------------------------------------------------------------------------------
Key: RF-5290
URL: https://jira.jboss.org/jira/browse/RF-5290
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.2
Environment: Richfaces 3.2.2SR1
MyFaces 1.2.5
Tomahawk 1.1.8
Tomcat 6 on windows
HTTPS with a self signed certificate, on Firefox
Reporter: Brian Couchman
When usign the file upload component with flash turned on, I have an issue with Firefox 3 (I don't know for sure with IE but it's probably the same).
My server has a self signed certificate valid for localhost and I'm accessing my page using a local IP (10.160.x.x). Firefox complains about a non valid SSL certificate and offers me to get the certificate add an exception. The page loads fine.
But on uploading, the upload fails with the message "Transfer error occured" (see screenshot)
If I access the page with HTTP (no SSL), it works fine.
See enclosed the screenshots from Charles (web proxy) that shows that the request initiated by the flash object failed the SSL handshake (CONNECT).
Not sure if it is a flash / firefox issue (see http://www.kahunaburger.com/2007/10/31/flex-uploads-via-httphttps/) or if there is a possible workaround on the Richfaces side.
--
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, 11 months