[JBoss JIRA] (RF-13325) pickList: onmouseout/onmouseover is triggered even when pointer button is not moved out/over element
by Juraj Húska (JIRA)
[ https://issues.jboss.org/browse/RF-13325?page=com.atlassian.jira.plugin.s... ]
Juraj Húska commented on RF-13325:
----------------------------------
It is the same in RF4 pickList.
Should I crete JIRA for {{mouseleave}} ?
> pickList: onmouseout/onmouseover is triggered even when pointer button is not moved out/over element
> ----------------------------------------------------------------------------------------------------
>
> Key: RF-13325
> URL: https://issues.jboss.org/browse/RF-13325
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-selects
> Affects Versions: 5.0.0.Alpha2
> Reporter: Juraj Húska
> Assignee: Juraj Húska
> Fix For: 5.0.0.Alpha2
>
> Original Estimate: 15 minutes
> Remaining Estimate: 15 minutes
>
> {{r:pickList}} event callback for *onmouseout* and *onmouseover* is called even when the mouse pointer does not leave the {{r:pickList}} element itself.
> I believe issue for both event handlers is the same, as both occurs when moving the mouse pointer in one of the lists (source list or target list). They should not.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 4 months
[JBoss JIRA] (RF-13172) rich:toolbarGroup location="right" doesn't work if toolbarGroup location="left" contains not rendered values
by Pavel Slegr (JIRA)
[ https://issues.jboss.org/browse/RF-13172?page=com.atlassian.jira.plugin.s... ]
Pavel Slegr reassigned RF-13172:
--------------------------------
Assignee: Pavel Slegr
> rich:toolbarGroup location="right" doesn't work if toolbarGroup location="left" contains not rendered values
> ------------------------------------------------------------------------------------------------------------
>
> Key: RF-13172
> URL: https://issues.jboss.org/browse/RF-13172
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-menu
> Affects Versions: 4.3.3
> Reporter: Sergey Zubarev
> Assignee: Pavel Slegr
> Labels: low_hanging_fruit
> Fix For: 5-Tracking
>
>
> {code}
> <rich:toolbar itemSeparator="line" id="repairWorkToolbar">
> <rich:toolbarGroup>
> <a4j:commandLink value="btn1"/>
> <a4j:commandLink value="btn2"/>
> <a4j:commandLink value="btn3" *rendered="false"*/>
> </rich:toolbarGroup>
> <rich:toolbarGroup location="right">
> <a4j:commandLink value="btn_right"/>
> </rich:toolbarGroup>
> ...
> {code}
> In this case location="right" doesn't work : it displayed left. When I remove rendered="false" from btn3 all works fine.
> Html debug shows, that code produced one extra element in colgroup tag when using rendered="false".
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 4 months
[JBoss JIRA] (RF-13327) pickList - setting of multiple attributes does not have any effect on the component
by Brian Leathem (JIRA)
[ https://issues.jboss.org/browse/RF-13327?page=com.atlassian.jira.plugin.s... ]
Brian Leathem resolved RF-13327.
--------------------------------
Resolution: Done
[~jhuska] if the value change listener still does not work, please file a new issue for it. All other attributes are expected to be working now.
> pickList - setting of multiple attributes does not have any effect on the component
> -----------------------------------------------------------------------------------
>
> Key: RF-13327
> URL: https://issues.jboss.org/browse/RF-13327
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-selects
> Affects Versions: 5.0.0.Alpha2
> Reporter: Juraj Húska
> Assignee: Brian Leathem
> Fix For: 5.0.0.Alpha2
>
> Original Estimate: 1 hour
> Remaining Estimate: 1 hour
>
> Setting of these attributes on a {{pickList}} has no effect on the rendered component (I am trying to group them somehow).
> *Buttons text*
> * addAllText
> * addText
> * removeAllText
> * removeText
> * downBottomText
> * downText
> * upText
> * upTopText
> *List style*
> * maxListHeight
> * minListHeight
> * style
> * columnClasses
> *Other RW options*
> * switchByClick
> * switchByDblClick
> *Callbacks*
> * onremoveitems
> * onadditems
> * value
> * valueChangeListener
> I guess that it is because they are not passed in the [renderer template|https://github.com/richfaces/richfaces/blob/master/framework/src...] ?
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 4 months
[JBoss JIRA] (RF-13323) FileUploadEvent listener reset the list value with Viewscope
by Mohammad Weshah (JIRA)
[ https://issues.jboss.org/browse/RF-13323?page=com.atlassian.jira.plugin.s... ]
Mohammad Weshah commented on RF-13323:
--------------------------------------
Sorry for being delay , please find the attached war file , please add your jar file ,and test the following URL :
http://localhost:8888/TestRichFacesWebProject/fileu/addDepartment.xhtml
i test it on view scope it is not work.
Regards
Wish79
> FileUploadEvent listener reset the list value with Viewscope
> ------------------------------------------------------------
>
> Key: RF-13323
> URL: https://issues.jboss.org/browse/RF-13323
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-input
> Affects Versions: 4.3.4
> Environment: Jboss 7.1
> Richfaces 4.3.4
> JSF 2.1.9
>
> Reporter: Mohammad Weshah
> Assignee: Jiří Štefek
> Labels: rich:fileUpload
> Attachments: RF-13323-SessionScoped.png, RF-13323-ViewScoped.png, RF-13323.zip, TestRichFacesWebProject.war
>
>
> Hello All,
> i make an example of upload file from richfaces showcase it is working successfully , but i notice if i changed the backing bean to viewscope the files list inside the FileUploadEvent listener will be rest every time that i upload new file , the code as follow :
>
> {code}
> protected List<UploadedImage> files = new ArrayList<UploadedImage>();
>
> public void FileUploadlistener(FileUploadEvent event) throws Exception {
> UploadedFile item = event.getUploadedFile();
> UploadedImage file = new UploadedImage();
> file.setLength(item.getData().length);
> file.setName(item.getName());
> file.setData(item.getData());
>
> files.add(file);
> }
> {code}
>
> but when i changed the scope to session the files still contain the old files, is it mandatory to the backing be session or there is something wrong ?
>
> Regards
> Wish79
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 4 months
[JBoss JIRA] (RF-13323) FileUploadEvent listener reset the list value with Viewscope
by Mohammad Weshah (JIRA)
[ https://issues.jboss.org/browse/RF-13323?page=com.atlassian.jira.plugin.s... ]
Mohammad Weshah updated RF-13323:
---------------------------------
Attachment: TestRichFacesWebProject.war
> FileUploadEvent listener reset the list value with Viewscope
> ------------------------------------------------------------
>
> Key: RF-13323
> URL: https://issues.jboss.org/browse/RF-13323
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-input
> Affects Versions: 4.3.4
> Environment: Jboss 7.1
> Richfaces 4.3.4
> JSF 2.1.9
>
> Reporter: Mohammad Weshah
> Assignee: Jiří Štefek
> Labels: rich:fileUpload
> Attachments: RF-13323-SessionScoped.png, RF-13323-ViewScoped.png, RF-13323.zip, TestRichFacesWebProject.war
>
>
> Hello All,
> i make an example of upload file from richfaces showcase it is working successfully , but i notice if i changed the backing bean to viewscope the files list inside the FileUploadEvent listener will be rest every time that i upload new file , the code as follow :
>
> {code}
> protected List<UploadedImage> files = new ArrayList<UploadedImage>();
>
> public void FileUploadlistener(FileUploadEvent event) throws Exception {
> UploadedFile item = event.getUploadedFile();
> UploadedImage file = new UploadedImage();
> file.setLength(item.getData().length);
> file.setName(item.getName());
> file.setData(item.getData());
>
> files.add(file);
> }
> {code}
>
> but when i changed the scope to session the files still contain the old files, is it mandatory to the backing be session or there is something wrong ?
>
> Regards
> Wish79
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 4 months
[JBoss JIRA] (RF-13327) pickList - setting of multiple attributes does not have any effect on the component
by Brian Leathem (JIRA)
[ https://issues.jboss.org/browse/RF-13327?page=com.atlassian.jira.plugin.s... ]
Brian Leathem commented on RF-13327:
------------------------------------
_columnClasses_ works for me with a space separated list.
> pickList - setting of multiple attributes does not have any effect on the component
> -----------------------------------------------------------------------------------
>
> Key: RF-13327
> URL: https://issues.jboss.org/browse/RF-13327
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-selects
> Affects Versions: 5.0.0.Alpha2
> Reporter: Juraj Húska
> Assignee: Brian Leathem
> Fix For: 5.0.0.Alpha2
>
> Original Estimate: 1 hour
> Remaining Estimate: 1 hour
>
> Setting of these attributes on a {{pickList}} has no effect on the rendered component (I am trying to group them somehow).
> *Buttons text*
> * addAllText
> * addText
> * removeAllText
> * removeText
> * downBottomText
> * downText
> * upText
> * upTopText
> *List style*
> * maxListHeight
> * minListHeight
> * style
> * columnClasses
> *Other RW options*
> * switchByClick
> * switchByDblClick
> *Callbacks*
> * onremoveitems
> * onadditems
> * value
> * valueChangeListener
> I guess that it is because they are not passed in the [renderer template|https://github.com/richfaces/richfaces/blob/master/framework/src...] ?
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 4 months
[JBoss JIRA] (RF-13327) pickList - setting of multiple attributes does not have any effect on the component
by Brian Leathem (JIRA)
[ https://issues.jboss.org/browse/RF-13327?page=com.atlassian.jira.plugin.s... ]
Brian Leathem commented on RF-13327:
------------------------------------
_maxListHeight_ and _minListHeight_ work for me. Note: you must include the units in the string, eg: "200px". If this is a change in behaviour, please file a new issue and we can discussion a resolution there.
> pickList - setting of multiple attributes does not have any effect on the component
> -----------------------------------------------------------------------------------
>
> Key: RF-13327
> URL: https://issues.jboss.org/browse/RF-13327
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-selects
> Affects Versions: 5.0.0.Alpha2
> Reporter: Juraj Húska
> Assignee: Brian Leathem
> Fix For: 5.0.0.Alpha2
>
> Original Estimate: 1 hour
> Remaining Estimate: 1 hour
>
> Setting of these attributes on a {{pickList}} has no effect on the rendered component (I am trying to group them somehow).
> *Buttons text*
> * addAllText
> * addText
> * removeAllText
> * removeText
> * downBottomText
> * downText
> * upText
> * upTopText
> *List style*
> * maxListHeight
> * minListHeight
> * style
> * columnClasses
> *Other RW options*
> * switchByClick
> * switchByDblClick
> *Callbacks*
> * onremoveitems
> * onadditems
> * value
> * valueChangeListener
> I guess that it is because they are not passed in the [renderer template|https://github.com/richfaces/richfaces/blob/master/framework/src...] ?
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 4 months