I faced a bit different issue with iui-0.30. I was using target="_self" to arrive to my menu page. And below html was present in my menu page
<div class="toolbar"> <h1 id="pageTitle"></h1> <a id="backButton" class="button" href="#"></a> <a class="button" href="#searchForm"><img src="/cp/images/default/en/ main/iphone/icon.PNG" alt="Search" height="30" width="30" border="0"/ ></a> </div> But Back and Search buttons were not getting displayed. After struggling for some time, by some divine intuition, I tried changing sequence of elements as below and it worked. <div class="toolbar"> <a id="backButton" class="button" href="#"></a> <a class="button" href="#searchForm"><img src="/cp/images/default/en/ main/iphone/icon.PNG" alt="Search" height="30" width="30" border="0"/ ></a> <h1 id="pageTitle"></h1> </div> Hope it helps. On Sep 4, 10:57 am, Sean Gilligan <[email protected]> wrote: > dogan kaya berktas wrote: > > Thanks for your detailed answer, I will try and let you know. > > Please let us know how it turns out. There is interest in integrating > this capability into iUI for a future version. > > -- Sean --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
