I am setting the current “State” (as in California, Alabama) in my combo box to a default value. That is working but when I see the screen in the Test Center it shows me the default set on the form. When I go to set the value the item I set programmatically is actually set but it is not scrolled into position. Is there something I have to set in order to scroll it into position on the list? My initialization code looks like this:
$(‘select[name=”cbOfficerState”] option:contains(“‘ + officerState + ‘”)’).attr(‘selected’, true);
On another note, my customer wants me to set the input format so that they can enter in basically numeric text strings, like height (5’10”) and weight (146 lbs) as well as social security numbers and other fields that are primarily numeric. I can’t use number
And lastly: Is there a way to exit the application. When I press the End App button on the iPhone the phone goes back to the Application list but when I pick the app again it comes up where it was the last time. I would at least like to respond to some kind of lost focus event that would allow me to reset the application to the first page.
Thanks and sorry for the long list.