sogo/UI/Templates/MailerUI/UIxMailFilterPanel.wox
Wolfgang Sourdeau 0edd70a590 Monotone-Parent: eb6c5ec3f5c58ecda67ffa9573b4076970983140
Monotone-Revision: 90f9a30ea616dbd91c871765a8975d11b08b4e72

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2006-12-22T16:58:30
Monotone-Branch: ca.inverse.sogo
2006-12-22 16:58:30 +00:00

54 lines
2.2 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="subject"
onmousedown="return false;"
onmouseup="setSearchCriteria(event);"><var:string label:value="Subject"/></li>
<li id="sender"
onmousedown="return false;"
onmouseup="setSearchCriteria(event);"><var:string label:value="Sender"/></li>
<li id="subject_or_sender"
onmousedown="return false;"
onmouseup="setSearchCriteria(event);"><var:string label:value="Subject or Sender"/></li>
<li id="to_or_cc"
onmousedown="return false;"
onmouseup="setSearchCriteria(event);"><var:string label:value="To or Cc"/></li>
<li id="entire_message"
onmousedown="return false;"
onmouseup="setSearchCriteria(event);"><var:string label:value="Entire Message"/></li>
<li id="find_in_message"
onmousedown="return false;"
onmouseup="setSearchCriteria(event);"><var:string label:value="Find In Message"/></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"
class="textField"
autocomplete="off" name="search" type="text" var:value="searchText"
onmousedown="onSearchMouseDown(event, this);"
onclick="popupSearchMenu(event, 'searchMenu');"
onchange="onSearchChange();"
onblur="onSearchBlur(this);"
onfocus="onSearchFocus(this);"
onkeydown="onSearchKeyDown(this);" />
</span>
<var:string label:value="View:" />
<var:popup list="filters"
item="filter" string="filterLabel" value="filter"
selection="selectedFilter"
const:name="filterpopup"
const:onchange="document.pageform.submit()" />
</var:if>
</div>
</container>