Hi,

I'm developing an app using IUI that has the following screen
transitions: Home -> Search form -> Search results. The forward path
works fine with nice sliding effects. However, on the Search Results
page, the back button in the browser and the IUI back button on the
top left both skips the Search Forms page and shows Home instead. Is
there a way to have it show the Search Form correctly?

The relevant pieces of html I'm using are below:

Home page:
<div class="toolbar">
                <h1 id="pageTitle"></h1>
                <a id="backButton" class="button" href="#"></a>
</div>
<ul id="home" title="Home" selected="true">
        <li><a href="#search">Today</a></li>
</ul>

Search Form page:
<form id="search" class="dialog" action="search.php" method="post">
        <fieldset>
            <h1>Search</h1>
            <a class="button leftButton" type="cancel"
onclick="">Cancel</a>
            <a class="button blueButton" type="submit"
onclick="">Search</a>
        .....
</form>

Search Results (search.php returns):
<ul id="searchResults" title="Search Results">
...
</ul>

Thanks!

Mike


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"iPhoneWebDev" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/iphonewebdev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to