[JBoss JIRA] Created: (RF-10652) Autocomplete - implement home/end key moving text cursor
by Lukas Fryc (JIRA)
Autocomplete - implement home/end key moving text cursor
---------------------------------------------------------
Key: RF-10652
URL: https://issues.jboss.org/browse/RF-10652
Project: RichFaces
Issue Type: Enhancement
Security Level: Public (Everyone can see)
Components: component-input
Affects Versions: 4.0.0.CR1
Environment: * RichFaces 4.0.0.20110227-CR1 r.21967
* Metamer 4.0.0.20110228-CR1 r.21993
* Apache MyFaces JSF-2.0 Core Impl 2.0.4
* JBoss AS 6.0.0.Final
* OpenJDK Runtime Environment 1.6.0_20-b20 @Linux
* Firefox 3.6.13 @ Linux x86_64
Reporter: Lukas Fryc
Currently home/end keys controls the completion list - selects first/last option.
Use home/end keys for controlling input to move text cursor on the start/end of the input when completion inactive (hidden) - the same way like standard inputs behave.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 8 months
[JBoss JIRA] Created: (RF-10221) Error when opening a popup panel
by James Goodfellow (JIRA)
Error when opening a popup panel
--------------------------------
Key: RF-10221
URL: https://issues.jboss.org/browse/RF-10221
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-panels-layout-themes
Affects Versions: 4.0.0.Milestone5
Environment: myfaces 2.0.3, tomcat 6
Reporter: James Goodfellow
When I call show or hide for a popup panel I get the following error: "fn is undefined" from firefox.
I believe the offening code is: (in popupPanel.js)
showPopupPanel : function (id, opts, event) {
$(document).ready(richfaces.$(id).show());
},
hidePopupPanel : function (id, opts, event) {
$(document).ready(richfaces.$(id).hide());
}
It should probably be something more like:
showPopupPanel : function (id, opts, event) {
$(document).ready( function() { richfaces.$(id).show() } );
},
hidePopupPanel : function (id, opts, event) {
$(document).ready( function(){ richfaces.$(id).hide() } );
}
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 8 months
[JBoss JIRA] Created: (RF-10689) Inplace Input - rendered wrong with @defaultLabel=null
by Lukas Fryc (JIRA)
Inplace Input - rendered wrong with @defaultLabel=null
------------------------------------------------------
Key: RF-10689
URL: https://issues.jboss.org/browse/RF-10689
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-input
Affects Versions: 4.0.0.CR1
Environment: RichFaces 4.0.0.20110227-CR1 r.21967
Metamer 4.0.0.20110228-CR1 r.21993
Apache MyFaces JSF-2.0 Core Impl 2.0.4
JBoss AS 6.0.0.Final
OpenJDK Runtime Environment 1.6.0_20-b20 @Linux
Chrome 9.0.597.107 @ Linux x86_64
Reporter: Lukas Fryc
When @defaultValue="", the inplace input is rendered too small and is not clickable.
Event with @style=min-width:100px, it is not clickable.
Suggestion: have min-width:100px as default and fix clickability.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 8 months