I have a textfield that a date is entered. It is the second in the list for input but the keyboard focus' on it as opposed to the top. How do I take the focus off the second field keyboard wise?
"#lmpdataa" : { // label
top: "22%",
left: "25%",
height: "7%",
width: "30%",
font : { fontSize : "13%", fontWeight: "bold"},
color: "black"
},
"#lmpdate" : { // input box Date
top: "22%",
left: "60%",
height: "6%",
width:"20%",
font : { fontSize : "12%", fontWeight: "bold"},
// softKeyboardOnFocus: Titanium.UI.Android.Hide.SOFT_KEYBOARD_DEFAULT_ON_FOCUS,
hintText: "MMDDYYYY",
color: "black"
},
I tried most everything I can think of with the last being commented out above the hint statement.
I could use a bit of help. This lmpdate is not declared in .js.
Thanks, R