First off just want to say how awesome the iUI framework is. We are planning on 
using it for multiple projects in the future. 

Currently we are using vTigerCRM (PHP) which has the older version of iUI 
loaded as an add on. We are trying to upgrade to the latest version of iUI and 
so far things have gone very smoothly. Due to this being a web application 
programming in PHH, we have had to use the "target="_webapp"" for a lot of the 
links. 

Unfortunately we are have problems with the search / Submit button to search 
through our application, which basically refreshing the current page with the 
results. The background of the title bar duplicates each time you press 
search.. Here is what it looks after 4 searches: 
http://contrack.iupat.info/After.png . The search functionality is actually 
working just fine, the only problem is the duplicate title bar background?

Here is the code for our button: 

<div class="toolbar">
    <h1 id="pageTitle"></h1>
    <a class="button leftButton" href="javascript:window.close();">Home</a>
    <a class="button" href="#searchForm">Search</a>
</div>

Here is the code for the form: 
    
<form id="searchForm" class="dialog" onsubmit="if(this.search.value == '') 
return false;" action="index.php" method="GET">
    <fieldset>
        <h1>{$_MODULE->label()}</h1>
        <a class="button leftButton" type="cancel">Cancel</a>
        <a target="_webapp" class="button blueButton" type="submit">Search</a> 
        <label for="keyword">Search:</label>                    
        <input type="hidden" name="_operation" value="listModuleRecords" />
        <input type="hidden" name="module" value="{$_MODULE->name()}" />
        <input id='__searchbox__q_' type="text" name="search" class="searchbox" 
value="{$_SEARCH}"/ placeholder="Type your keywords">
    </fieldset>
</form>

Any help would be appreciated. Thank you again for all your hard work with this 
framework.

Kurt

-- 
You received this message because you are subscribed to the Google Groups 
"iPhoneWebDev" group.
To post to this group, send email to iphonewebdev@googlegroups.com.
To unsubscribe from this group, send email to 
iphonewebdev+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/iphonewebdev?hl=en.


Reply via email to