I am using enyojs 2.4 and the moonstone library.
What does "can't spot in frozen mode" mean ?
I have two inputs :
{kind: "moon.InputDecorator", name: "emaildec", spotlight: true, defaultSpotlightLeft : "emaildec", components: [
{kind: "moon.Input", name: "username",placeholder: "e-mail address", onchange: "nameChanged", value:"",classes: "input-style"} //,spotlight: true
]
},
{tag: "br"},
{kind: "moon.InputDecorator", name: "pwddec" , spotlight: true, defaultSpotlightLeft : "pwddec", components: [
{kind: "moon.Input", name: "userpwd",type:"password", placeholder: "ameba password", onchange: "passwordChanged", value: "",classes: "input-style"} //,spotlight: true
]
}
This console error is thrown when I attempt to set focus on the password input :
enyo.Spotlight.spot(this.$.userpwd);
What I want to happen is:
- user fills in first input using onscreen keyboard
- user then navigates to enter button on onscreen keyboard and presses ok/enter on remote control
- focus is set to second input.