I may be wrong about this, but I believe the focus logic for the code below is backwards. What I am expecting is for the focus to start at the first time item instead of the last time item.
Now, I know of a globalTabIndex, tabIndex property in form items but these properties are not ideal for our product.
Ideally, we want the very first focusable form item to have focus in all of our screens.
Now, I know of a globalTabIndex, tabIndex property in form items but these properties are not ideal for our product.
Ideally, we want the very first focusable form item to have focus in all of our screens.
Code:
isc.DynamicForm.create({autoFocus: true, fields: [ {title:"Time", type:"time"} ] }); isc.DynamicForm.create({autoFocus: true,top:225, fields: [ {title:"Time", type:"time"} ] }); isc.DynamicForm.create({autoFocus: true,top:350, fields: [ {title:"Time", type:"time"} ] });
Comment