Openbravo Issue Tracking System - Retail Modules
View Issue Details
0024396Retail ModulesWeb POSpublic2013-07-22 16:402013-09-23 08:30
jecharri 
malsasua 
urgentminoralways
newopen 
5
RMP24 
 
No
0024396: Focus does not work in login window or search tab
Focus does not work in login window or search tab:

-when you choose the image, the focus does not go to field password

-when you go to tab search the cursor does not go to field search

This problem happens in Ipad device
-
1-handleUserImgClick: function (inSender, inEvent) {
var u = inEvent.originator.user;
this.$.username.setValue(u);
this.$.password.setValue('');
this.$.password.focus();
/*
* @author a.herzog
* Implement a iPad-Compatible setFocus on the Password field
*/
/*
* BEGIN CHANGE
*/
var setFocusTo = this.$.password;
setTimeout(function () {
setFocusTo.focus();
}, 200);
/*
* BEGIN CHANGE
*/
return true;
},


2-enyo.kind({
name: 'OB.UI.SearchProduct',
style: 'margin: 5px; background-color: #ffffff; color: black; padding: 5px',
published: {
receipt: null
},
handlers: {
onSearchAction: 'searchAction',
onClearAction: 'clearAction'
},
events: {
onAddProduct: ''
},
executeOnShow: function () {
var me = this;
setTimeout(function () {
me.$.products.$.theader.$.searchProductHeader.$.productname.focus();
}, 200);
/*
* Set a second Timeout to put Focus into Search field
*/
/*
* Begin Change
*/
setTimeout(function () {
me.$.products.$.theader.$.searchProductHeader.$.productname.focus();
}, 400);
/*
* End Change
*/
},
No tags attached.
has duplicate defect 0022078 closed guilleaer Login screen: tapping a user does not move the focus to the password field 
Issue History
2013-07-22 16:40jecharriNew Issue
2013-07-22 16:40jecharriAssigned To => marvintm
2013-07-22 17:15anherzogIssue Monitored: anherzog
2013-08-19 11:35marvintmTriggers an Emergency Pack => No
2013-08-19 11:35marvintmTarget VersionRMP26 => RMP27
2013-09-16 11:59jecharriDescription Updatedbug_revision_view_page.php?rev_id=5025#r5025
2013-09-16 11:59marvintmAssigned Tomarvintm => jecharri
2013-09-16 11:59marvintmAssigned Tojecharri => malsasua
2013-09-23 08:30marvintmTarget VersionRMP27 =>
2014-03-24 17:55malsasuaRelationship addedhas duplicate 0022078

There are no notes attached to this issue.