[JBoss JIRA] Created: (RF-10992) dragValue expression is evaluated to null in customcomponent
by Adrian Höhn (JIRA)
dragValue expression is evaluated to null in customcomponent
------------------------------------------------------------
Key: RF-10992
URL: https://issues.jboss.org/browse/RF-10992
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-drag/drop
Affects Versions: 4.0.0.Final
Environment: JSF2 environment with Richfaces 4 Final
Reporter: Adrian Höhn
When the dragValue is set in a customcomponent, it's always evaluated to null. (dropEvent.getDragValue() == null)
If a stringvalue is set instead, the value is submitted correctly.
Example:
<rich:dragSource type="sometype" dragValue="#{cc.attrs.myvalue}"/>
same code outside of the customcomponent works fine.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 7 months
[JBoss JIRA] Created: (RF-11067) rich:autocomplete popups with suggestions does not reflect the value in input
by Juraj Huska (JIRA)
rich:autocomplete popups with suggestions does not reflect the value in input
-----------------------------------------------------------------------------
Key: RF-11067
URL: https://issues.jboss.org/browse/RF-11067
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: examples
Affects Versions: 4.1.0.Milestone1
Environment: richfaces-showcase
commit 4a534c358ff5903429609ff065fc27bae6fec2c0
Reporter: Juraj Huska
In richfaces-showcase, demo for rich:autocomplete, sample Custom Popup Layouts, popup with suggestions does not reflect what is typed in the input, it always shows the first row of suggestion.
For example when I type v, it should render popup with suggestion Vermont, but instead of it suggest Alabama.
This is corrected when something is chosen, for example Alabama, then suggestions work properly.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 7 months
[JBoss JIRA] Created: (RF-11448) tabPanel activeItem not working syncrhonously with bean.activeItem
by Yavuz Kavus (JIRA)
tabPanel activeItem not working syncrhonously with bean.activeItem
------------------------------------------------------------------
Key: RF-11448
URL: https://issues.jboss.org/browse/RF-11448
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component
Affects Versions: 4.1.0.Milestone1, 4.0.0.Final
Environment: windows 7, glassfish 3, richfaces 4.0
Reporter: Yavuz Kavus
<r:tabPanel activeItem="#{bean.activeItem}" ..>
<r:tab name="tab1">...</r:tab>
<r:tab name="tab2">...</r:tab>
<r:tab name="tab3">...</r:tab>
</r:tabPanel>
* when page first displayed, in bean constructor activeItem set to "tab1" and tab1 shown on first display.
* clicking "tab2" whether in ajax or server, not calls setActiveItem in bean.
* clicking "tab3", calls setActiveItem(String item), but item="tab2". one step behind(previously selected tab).
* clicking "tab2", calls setActiveItem with parameter "tab3", again one step behind actual selected tab.
* and so on.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 7 months
[JBoss JIRA] (RF-11617) rich:pickList 4.1.0.M3 - valueChangeListener not firing correctly
by Brendan Healey (Created) (JIRA)
rich:pickList 4.1.0.M3 - valueChangeListener not firing correctly
-----------------------------------------------------------------
Key: RF-11617
URL: https://issues.jboss.org/browse/RF-11617
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-selects
Affects Versions: 4.1.0.Milestone3
Environment: Mojarra 2.1.3, glassfish 3.1.1, Windows 7, IE8 & Chrome browsers
Reporter: Brendan Healey
I have two List<String>, selectedList & wholeList. Using the add/remove(all) buttons
the value change listener is not executed on the server unless the browser window is
minimised, tested on IE8 & Chrome. This has been tested with the converter= attribute
and a child f:converter tag. The child a4j:ajax tag is required.
<rich:pickList value="#{leagueMgrHomepageView.selectedList}"
onchange="fred()"
converter="convertHashMap"
valueChangeListener="#{leagueMgrHomepageView.testVCL}">
<a4j:ajax/>
<f:selectItems value="#{leagueMgrHomepageView.wholeList}"
var="var" itemLabel="#{var}" itemValue="#{var}"/>
</rich:pickList>
public void testVCL(ValueChangeEvent event) {
Log.log("testVCL");
}
Looks like a browser side event problem.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 7 months
[JBoss JIRA] (RF-11506) Tab panel: not possible to switch panels after ajax request
by Pavol Pitonak (Created) (JIRA)
Tab panel: not possible to switch panels after ajax request
-----------------------------------------------------------
Key: RF-11506
URL: https://issues.jboss.org/browse/RF-11506
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-output
Affects Versions: 4.1.0.Milestone3
Environment: RichFaces 4.1.0.20111011-M3
Metamer 4.1.0-SNAPSHOT
Mojarra 2.1.3-SNAPSHOT
JBoss Web 7.0.2.Final
OpenJDK Runtime Environment 1.6.0_22-b22 @ Linux
Chrome 14.0.835.202 @ Linux i686
Reporter: Pavol Pitonak
{code:xml}
<a4j:commandButton id="doNothingButton" value="do nothing" render="tab2" />
<rich:tabPanel id="tabPanel" >
<rich:tab id="tab1" name="tab1" header="tab1 header">
content of tab 1
</rich:tab>
<rich:tab id="tab2" name="tab2" header="tab2 header">
content of tab 2
</rich:tab>
<rich:tab id="tab3" name="tab3" header="tab3 header">
content of tab 3
</rich:tab>
<rich:tab id="tab4" name="tab4" header="tab4 header" disabled="true">
content of tab 4
</rich:tab>
<rich:tab id="tab5" name="tab5" header="tab5 header">
content of tab 5
</rich:tab>
</rich:tabPanel>
{code}
# switch to tab 2, 3, 5, 1
# click the button
# switch to tab 2
result:
panel is not switched
Sometimes the following error appears in Chrome console:
{code}
Uncaught TypeError: Cannot read property 'disabled' of undefined togglePanel.js:78
B.ui.TogglePanel.B.BaseComponent.extendClass.__getItemIndex togglePanel.js:78
B.ui.TogglePanel.B.BaseComponent.extendClass.__getItemByName togglePanel.js:87
B.ui.TogglePanel.B.BaseComponent.extendClass.getNextItem togglePanel.js:46
B.ui.TogglePanel.B.BaseComponent.extendClass.switchToItem togglePanel.js:36
A.ui.Tab.A.ui.TogglePanelItem.extendClass.__onHeaderClick tab.js:7
getHandlerWrapper js:38
jQuery.event.handle js:2965
jQuery.event.add.elemData.handle.eventHandle js:2599
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 7 months
[JBoss JIRA] (RF-11582) showcase - rename names of xhtml pages for samples rich:notify and rich:editor
by Juraj Huska (Created) (JIRA)
showcase - rename names of xhtml pages for samples rich:notify and rich:editor
------------------------------------------------------------------------------
Key: RF-11582
URL: https://issues.jboss.org/browse/RF-11582
Project: RichFaces
Issue Type: Enhancement
Security Level: Public (Everyone can see)
Components: qe, showcase
Affects Versions: 4.1.0.Milestone2
Environment: showcase
Reporter: Juraj Huska
Priority: Trivial
Samples for rich:editor and rich:notify do use in .xhtml files names for this samples dash notation.
For example samples for notify are: notify-attributes-sample.xhtml, notify-messages-sample.xhtml, stacking-messages-sample.xhtml.
I would appreciate to name them using camel case, as it is done for all other components.
The reason is that in functional tests smoke tests for showcase I am using this feature for loading the appropriate page according to the test class name, and it is not possible to name java classes with dashes.
The another reason is to have consistent names for all components.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 7 months
[JBoss JIRA] Created: (RF-10876) rich:toolBar links are barely visible
by Juraj Huska (JIRA)
rich:toolBar links are barely visible
-------------------------------------
Key: RF-10876
URL: https://issues.jboss.org/browse/RF-10876
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: mobile
Affects Versions: 4.0.0.Final
Environment: Demo application - richfaces-showcase-4.0.0.Final-jee6.war
demo - sample - poppupPanel
container - Jboss AS 6.0.0.Final
mobile devices - iPhone 4 - OS version iOS 4.2.1 - browser Safari
iPad1 - OS version iOS 4.2.1 - browser Safari
Nexus S - OS Android 2.3.2
Reporter: Juraj Huska
The link which is on the toolbar in the demo for poppupPanel, in the sample of login panel positioning, is almost invisible with some skins, but it is problem not only on mobile devices but the problem of skinnability in general.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 7 months
[JBoss JIRA] Created: (RF-10880) rich:inplaceSelect no highlighting for options in this select
by Juraj Huska (JIRA)
rich:inplaceSelect no highlighting for options in this select
-------------------------------------------------------------
Key: RF-10880
URL: https://issues.jboss.org/browse/RF-10880
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: mobile
Affects Versions: 4.0.0.Final
Environment: Demo application - richfaces-showcase-4.0.0.Final-jee6.war
container - Jboss AS 6.0.0.Final
mobile devices - iPhone 4 - OS version iOS 4.2.1 - browser Safari
iPad1 - OS version iOS 4.2.1 - browser Safari
Nexus S - OS Android 2.3.2
Reporter: Juraj Huska
There is no highlighting when I touch the option.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 7 months
[JBoss JIRA] Created: (RF-10891) rich:dragSource it is not possible to drag an object
by Juraj Huska (JIRA)
rich:dragSource it is not possible to drag an object
----------------------------------------------------
Key: RF-10891
URL: https://issues.jboss.org/browse/RF-10891
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: mobile
Affects Versions: 4.0.0.Final
Environment: Demo-application - richfaces-showcase-4.0.0.Final-jee6.war
container - JBoss AS 6.0.0.Final
mobile devices -
iPhone 4 - OS version iOS 4.2.1 - browser Safari
iPad1 - OS version iOS 4.2.1 - browser Safari
Nexus S - OS Android 2.3.2
Reporter: Juraj Huska
Does not work at all, it is not possible to drag the item.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 7 months
[JBoss JIRA] (RF-11512) mobile showcase - on iPad there is JS error shown by developer console - TypeError: Result of expression 'jQuery.ui' [undefined] is not an object.
by Juraj Huska (Created) (JIRA)
mobile showcase - on iPad there is JS error shown by developer console - TypeError: Result of expression 'jQuery.ui' [undefined] is not an object.
--------------------------------------------------------------------------------------------------------------------------------------------------
Key: RF-11512
URL: https://issues.jboss.org/browse/RF-11512
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: mobile, showcase
Affects Versions: 4.1.0.Milestone3
Environment: app: richfaces-showcase-4.1.0.20111011-M3
container: JBoss AS 7.0.2.Final
mobile device:
iPad1 - OS version iOS 4.2.1 - browser Safari
Reporter: Juraj Huska
When the page is refreshed this error is captured by developer console on Safari:
{code}
TypeError: Result of expression 'jQuery.ui' [undefined] is not an object.
{code}
The error is generated for every page, but not shown without explicit refresh of the page(maybe this is the issue of developer console).
The error message is not very verbose, there is only line.
I am enclosing the source code of page where the error occured, and the error from console.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 7 months