[JBoss JIRA] Created: (RF-5671) Panel Menu. selectedChild problems
by Ilya Shaikovsky (JIRA)
Panel Menu. selectedChild problems
----------------------------------
Key: RF-5671
URL: https://jira.jboss.org/jira/browse/RF-5671
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.0
Reporter: Ilya Shaikovsky
Assignee: Nick Belaevski
1)
<rich:panelMenu selectedChild="#{userBean.name}" id="pb" mode="ajax">
<rich:panelMenuItem id="one" label="one"/>
<rich:panelMenuItem id="two" label="two"/>
</rich:panelMenu>
In this case initial rendering is ok. But after clicking two - this value not saved into the model - so selection lost after refresh
2)
<rich:panelMenu selectedChild="#{userBean.name}" id="pb" mode="ajax">
<rich:panelMenuItem id="one" label="one"/>
<rich:panelMenuItem id="two" label="two"/>
</rich:panelMenu>
<a4j:commandButton value="change selected" action="#{userBean.action}" reRender="pb"></a4j:commandButton>
action on the command button changes selected child in the model via ajax, but the component isn't read it from the model on rendering - so selection change doesn't happens.
3) <rich:panelMenu selectedChild="#{userBean.name}" id="pb" mode="ajax">
<rich:panelMenuGroup expanded="true">
<rich:panelMenuItem id="one" label="one"/>
<rich:panelMenuItem id="two" label="two"/>
</rich:panelMenuGroup>
</rich:panelMenu>
In this case if the User.name="one" by default - no selection will happens at all from the beggining because item in collapsed group.
--
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