source: trunk/expressoMail1_2/templates/default/searchMails.ejs @ 5751

Revision 5751, 4.0 KB checked in by alexandrecorreia, 12 years ago (diff)

Ticket #673 - Novas dialogs com Jquery para o novo visual do expresso ( com EJS ).

Line 
1        <fieldset style="width:340px; height:350px; text-align:right; padding: 5px; position:absolute; margin:5px; border:0px ">
2                                <legend><%=data.Inform_your_search_in_the_text_fields%></legend>
3                       
4                                <label><%=data.From%>:</label>
5                                <input style="margin-left: 6px;" type="text" id="txt_de" size="20" />
6                                <br style="margin-bottom:15px" />
7
8                                <label><%=data.To%>:</label>
9                                <input style="margin-left: 6px;" type="text" id="txt_para" size="20" />
10                                <br style="margin-bottom:15px"/>
11
12                                <label><%=data.Cc%>:</label>
13                                <input style="margin-left: 6px;" type="text" id="txt_cc" size="20" />
14                                <br style="margin-bottom:15px"/>
15
16                                <label><%=data.Subject%>:</label>
17                                <input style="margin-left: 6px;" type="text" id="txt_ass" size="20" />
18                                <br style="margin-bottom:15px"/>
19
20                                <label><%=data.Message_body%>:</label>
21                                <input style="margin-left: 6px;" type="text" id="txt_body" size="20" />
22                                <br style="margin-bottom:30px" />
23                       
24                                <div style="text-align: right; margin-bottom:10px;">
25                                        <label><%=data.Since_Date%>:</label>
26                                        <input style="margin-left: 3px; width:82px;" type="text" id="since_date" onkeypress="return dateMask(this, event);" readonly="readonly" />
27                                        <label><%=data.Before_Date%>:</label>
28                                        <input style="margin-left: 3px; width:82px;" type="text" id="before_date" onkeypress="return dateMask(this, event);" readonly="readonly" />
29                                </div>
30                               
31                                <label><%=data.On_Date%>:</label>
32                                <input style="margin-left: 3px; width:82px;" type="text" id="on_date" onkeypress="return dateMask(this, event);" readonly="readonly" />
33                                <br/>
34                                <br/>
35
36                                <label><%=data.Flags%>:</label>
37
38                                <select style="width:15em; margin-left: 6px" name="flagged" id="flagged">
39                                        <option value=""/>
40                                        <option value="FLAGGED"><%=data.Flagged%></option>
41                                        <option value="UNFLAGGED"><%=data.Unflagged%></option>
42                                </select>
43
44                                <br style="margin-bottom:15px"/>
45                       
46                                <select style="width:15em;" name="seen" id="seen">
47                                        <option value=""/>
48                                        <option value="SEEN"><%=data.Seen%></option>
49                                        <option value="UNSEEN"><%=data.Unseen%></option>
50                                </select>
51                       
52                                <br style="margin-bottom:15px"/>
53                       
54                                <select style="width:15em;" name="answered" id="answered">
55                                        <option value=""/>
56                                        <option value="ANSWERED"><%=data.Answered_Forwarded%></option>
57                                        <option value="UNANSWERED"><%=data.Unanswered_Unforwarded%></option>
58                                </select>
59                       
60                                <br style="margin-bottom:15px"/>
61                       
62                                <select style="width:15em;visibility:hidden;" name="recent" id="recent">
63                                        <option value=""/>
64                                        <option value="RECENT"><%=data.Recent%></option>
65                                        <option value="OLD"><%=data.Old%></option>
66                                </select>
67
68                                <br style="margin-bottom:60px"/>
69                </fieldset>
70
71                <fieldset style="width:395px; height:350px; padding: 5px; position:absolute; margin-left: 365px; margin-top:5px; border:0px;">
72                       
73                        <legend>
74                                <%=data.Search_the_messages_in_these_folders%>
75                        </legend>
76
77                        <div id="divFoldersSearch" style="width:165px; height:150px; float:left; margin-bottom:10px; border:1px outset black; background:#F7F7F7; overflow:auto;"></div>
78                       
79                        <div style="float:left; height:100px; padding-top:50px; margin: 0 3px;">
80                                <input type="button" id="incluir" name="incluir" value="<%=data.button_right%>" onclick="EsearchE.add_mailboxes()" class="button ui-button ui-widget ui-state-default ui-corner-all" role="button" aria-disabled="false" />
81                                <br style="margin-bottom:15px" />
82                                <input type="button" id="excluir" name="excluir" value="<%=data.button_left%>" onclick="EsearchE.del_mailboxes()" class="button ui-button ui-widget ui-state-default ui-corner-all" role="button" aria-disabled="false" />
83                        </div>
84                       
85                        <div style="float:left;">
86                                <select multiple="true" id="sel_search_nm_box1" name="sel_search_nm_box1" style="width:165px;height:150px; background:#F7F7F7; color:#FC6103; font-size:10px; font-family:sans-serif; font-weight:bold"></select>
87                        </div>
88                       
89                        <br clear="both"/>
90
91                        <input type="checkBox" id="check_all_msg" name="check_all_msg" onclick="EsearchE.all_mailboxes()"/>
92                       
93                        <b><%=data.In_all_the_folders%></b>
94                       
95                </fieldset>
Note: See TracBrowser for help on using the repository browser.