I have a input text field and Search button on the page.
The Search button is coded as <button type="submit" runat="server" id="btnSearch" onserverclick="btnSearch_Click">Search</button>
When you enter something on input text field, and click on Go button from the iPad, it will trigger the Search function on server side. I noticed that it executed the Page_Load & btnSearch_Click function on the server side twice.
But if you click on the Search button from the page, it only executed one time on the server side. Any idea to correct this?
I recently wrote 2 separate Search pages: one for iPad, and one for desktop using IE 8. I use jquerymobile button <a href="#" data-role="button" >Search</a> and test it on iPad. I have to click the button on the page, in order to search it. If I click on the Go button the iPad, it will not do anything.
I also tested another page on the iPad. I use asp button as <asp:button text="Search" runat="server" />. I can click the Go button on the iPad, and it will go ahead and search.
Please let me know what I need to do if I'm using the jquery button, and be able to click on the Go button from the iPad.
I would like to convert to the latest version jquerymobile and jquery. But when I changed my page to use the latest jquery, the page looks ugly. That means it does not understand the jquery javascript library.
I checked the log to see if there are any errors but cannot find anything.
I noticed when I select an US state from the drop down, If I selected Wyoming where it was last state in the drop down , the next time I go back to the drop down again, it only displays 25 states starting from Wyoming, I cannot scroll back to the 1st state in drop down any more.
When the user clicks on the delete button, a confirmation message box is displayed to confirm the delete.The confirmation looks crooked on the phone. How do I change the style sheet so it would look the same the drop down. Here is the style sheet for the confirmation:
To improve the speed, I downloaded all the JS and CSS files to my project. I noticed the style sheets not working, the page looks different. I used Chrome Google to debug the script, but I didn't see any errors. I noticed that I have to move all the images under the Styles/Images folder in order for the CSS to recognize the images. What else do I need to do.