sogo/UI/Templates/ContactsUI/UIxContactsFilterPanel.wox
Wolfgang Sourdeau 68a6ef4b86 Monotone-Parent: 64522cdf0fe1f7593f86b479ef7b5eb023ff16e1
Monotone-Revision: 094029cd312d7c4e4deaaf59771581fa91e8e8bc

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2006-08-03T21:23:30
Monotone-Branch: ca.inverse.sogo
2006-08-03 21:23:30 +00:00

29 lines
1.1 KiB
XML

<?xml version='1.0' standalone='yes'?>
<container
xmlns="http://www.w3.org/1999/xhtml"
xmlns:var="http://www.skyrix.com/od/binding"
xmlns:const="http://www.skyrix.com/od/constant"
>
<div class="menu" id="searchMenu">
<ul id="searchOptions">
<li id="name_or_address"
onmousedown="return false;"
onmouseup="setSearchCriteria(event);"><var:string label:value="Name or Address"/></li>
</ul>
</div>
<div id="filterPanel">
<var:if condition="hideFrame" const:negate="YES"
><span class="searchBox" style="float: right">
<input id="searchCriteria" name="criteria" type="hidden" var:value="searchCriteria" />
<input id="searchValue" onmousedown="onSearchMouseDown(event);" onclick="popupSearchMenu(event, 'searchMenu');" autocomplete="off" name="search" type="text" var:value="searchText" onchange="onSearchChange();" onblur="onSearchBlur();" onfocus="onSearchFocus(event);" />
</span>
<script type="text/javascript">
initCriteria();
document.searchform.search.focus();
</script>
</var:if>
</div>
</container>