1 | <!-- BEGIN list --> |
---|
2 | <script src="js/report_window.js"></script> |
---|
3 | <input type="hidden" value="{txt_loading}" id="txt_loading"> |
---|
4 | <input type="hidden" value="{txt_clear_trash}" id="txt_clear_trash"> |
---|
5 | <input type="hidden" value="{upload_max_filesize}" id="upload_max_filesize"> |
---|
6 | <input type="hidden" value="{msg_folder}" id="msg_folder"> |
---|
7 | <input type="hidden" value="{msg_number}" id="msg_number"> |
---|
8 | <input type="hidden" value="{user_email_alternative}" id="user_email_alternative"> |
---|
9 | <input type="hidden" value="{user_email}" id="user_email"> |
---|
10 | <input type="hidden" value="{user_organization}" id="user_organization"> |
---|
11 | <input type="hidden" value="{cyrus_delimiter}" id="cyrus_delimiter"> |
---|
12 | <table id="main_table" width="100%" cellspacing="0" cellpadding="0" border="0" style="display:none"> |
---|
13 | <tbody> |
---|
14 | <tr> |
---|
15 | <td id="folderscol" width="170px" height="100%" valign="top"> |
---|
16 | <table id="folders_tbl" width="200px" border="0" cellspacing="0" cellpadding="0"> |
---|
17 | <tbody> |
---|
18 | <tr> |
---|
19 | <td class='content-menu'> |
---|
20 | <table border="0" cellspacing="0" cellpadding="0" style="width:100%"> |
---|
21 | <tbody> |
---|
22 | <tr> |
---|
23 | <td> |
---|
24 | <div id="search_div" align="center" style="white-space:nowrap"></div> |
---|
25 | <input type="text" id="em_message_search" size="17" style="margin-left: 5px;"/> |
---|
26 | <a style="padding:1 8px; width:16px; height:16px; background: url(templates/default/images/search.gif) no-repeat center; margin: 0 3px;" class="" onMouseOut="window.status='';return true;" title='{lang_Open_Search_Window}' onMouseOver="window.status='{lang_Open_Search_Window}';return true;" href="javascript:void(0);" onClick="javascript:search_emails(Element('em_message_search').value)"></a> |
---|
27 | |
---|
28 | <a style="padding:1 8px; width:16px; height:16px; background: url(templates/default/images/users.gif) no-repeat center;" class="" onMouseOut="window.status='';return true;" title='{lang_search_user}' onMouseOver="window.status='{lang_search_user}' ;return true;" href="javascript:void(0);" onClick="javascript:emQuickSearch(Element('em_message_search').value, 'null', 'null', 'expressoMail')"></a> |
---|
29 | </td> |
---|
30 | </tr> |
---|
31 | <tr height="24"> |
---|
32 | <td class='content-menu-td' onclick='javascript:new_message("new","null");' onmouseover='javascript:set_menu_bg(this);' onmouseout='javascript:unset_menu_bg(this);'> |
---|
33 | <div class='em_div_sidebox_menu'> |
---|
34 | <img src='./templates/default/images/menu/createmail.gif' /> |
---|
35 | <span class="em_sidebox_menu">{new_message}</span> |
---|
36 | </div> |
---|
37 | </td> |
---|
38 | </tr> |
---|
39 | <tr height="24"> |
---|
40 | <td class='content-menu-td' id='em_refresh_button' onclick='javascript:refresh();' onmouseover='javascript:set_menu_bg(this);' onmouseout='javascript:unset_menu_bg(this);'> |
---|
41 | <div class='em_div_sidebox_menu'> |
---|
42 | <img src='./templates/default/images/menu/checkmail.gif' /> |
---|
43 | <span class="em_sidebox_menu">{refresh}</span> |
---|
44 | </div> |
---|
45 | </td> |
---|
46 | </tr> |
---|
47 | <tr height="24"> |
---|
48 | <td id="link_tools" class='content-menu-td' onmouseover='javascript:set_menu_bg(Element("link_tools"));' onmouseout='javascript:unset_menu_bg(this);'> |
---|
49 | <div class='em_div_sidebox_menu'> |
---|
50 | <img height='16px' src='./templates/default/images/menu/tools.gif' /> |
---|
51 | <span class="em_sidebox_menu">{tools} ...</span> |
---|
52 | </div> |
---|
53 | </td> |
---|
54 | </tr> |
---|
55 | </tbody> |
---|
56 | </table> |
---|
57 | </td> |
---|
58 | </tr> |
---|
59 | <tr> |
---|
60 | <td height="2px"></td> |
---|
61 | </tr> |
---|
62 | <tr> |
---|
63 | <td class="image-menu" valign="top" style="padding:0px"> |
---|
64 | <div id="content_folders" class="menu-degrade" style="width:230px;height:100%;overflow:auto"></div> |
---|
65 | </td> |
---|
66 | </tr> |
---|
67 | </tbody> |
---|
68 | </table> |
---|
69 | <script type="text/javascript"> |
---|
70 | var element_input = document.getElementById('em_message_search'); |
---|
71 | |
---|
72 | function keyPressQuickSearchEmail(e) |
---|
73 | { |
---|
74 | if( e.keyCode == 13 ) |
---|
75 | performQuickSearch(Element('em_message_search').value); |
---|
76 | } |
---|
77 | |
---|
78 | if ( element_input.addEventListener ) |
---|
79 | element_input.addEventListener('keypress', keyPressQuickSearchEmail, false); |
---|
80 | else if ( element_input.attachEvent ) |
---|
81 | element_input.attachEvent('onkeypress', keyPressQuickSearchEmail); |
---|
82 | |
---|
83 | function onFocusQuickSearchEmail(pInput) |
---|
84 | { |
---|
85 | if ( pInput.createTextRange ) |
---|
86 | { |
---|
87 | var FieldRange = pInput.createTextRange(); |
---|
88 | FieldRange.moveStart('character', pInput.value.length); |
---|
89 | FieldRange.collapse(); |
---|
90 | FieldRange.select(); |
---|
91 | } |
---|
92 | } |
---|
93 | |
---|
94 | </script> |
---|
95 | </td> |
---|
96 | <td class="collapse_folders_td"> |
---|
97 | <span class="collapse_folders" style="width: 12px; height: 12px;"/> |
---|
98 | </td> |
---|
99 | <td width="*" valign="top" align="left"> |
---|
100 | <div id="exmail_main_body" class="messagescol"> |
---|
101 | <table id="border_table" width="auto" height="26" cellspacing="0" cellpadding="0" border="0"> |
---|
102 | <tbody id="border_tbody"> |
---|
103 | <tr id="border_tr"> |
---|
104 | <td nowrap class="menu" onClick="alternate_border(0);resizeWindow();" id="border_id_0"> |
---|
105 | {lang_inbox} <font face="Verdana" size="1" color="#505050">[ |
---|
106 | <span id="new_m">0</span> / |
---|
107 | <span id="tot_m">0</span>] |
---|
108 | </font> |
---|
109 | </td> |
---|
110 | <td nowrap id="border_blank" class="last_menu" width="100%"> </td> |
---|
111 | </tr> |
---|
112 | </tbody> |
---|
113 | </table> |
---|
114 | <div id="content_id_0" class="conteudo"></div> |
---|
115 | <div id="footer_menu"> |
---|
116 | <table style="border-top:0px solid black" id="footer_box" cellpadding=0 cellspacing=0 border=0 width="100%" height="10px"> |
---|
117 | <tbody> |
---|
118 | <tr id="table_message"></tr> |
---|
119 | </tbody> |
---|
120 | </table> |
---|
121 | </div> |
---|
122 | </div> |
---|
123 | </td> |
---|
124 | </tr> |
---|
125 | </tbody> |
---|
126 | </table> |
---|
127 | <div id='forms_queue'></div> |
---|
128 | <div style="display:none" id="send_queue"> |
---|
129 | <table width="100%" height="100%"> |
---|
130 | <tr> |
---|
131 | <td background="js/modal/images/fundo_exp.png" valign="top" align="center"> |
---|
132 | <font color="#006699"><b><div id="text_send_queue"></div></b></font> |
---|
133 | </td> |
---|
134 | </tr> |
---|
135 | </table> |
---|
136 | </div> |
---|
137 | <link href="../library/jquery/css/redmond/jquery-ui.css" rel="stylesheet" type="text/css"> |
---|
138 | <script type="text/javascript" src="../library/jquery/jquery-ui.min.js"></script> |
---|
139 | |
---|
140 | <script type="text/javascript" src="js/QuickCatalogSearch.js"></script> |
---|
141 | <link href="templates/default/quick_search.css" rel="stylesheet" type="text/css"> |
---|
142 | <div style="display:none; width: auto; min-height: 0px; height: 410px; overflow: hidden" id="dialog-modal" class="dialog-modal expressomail-qs-container" title="{lang_quick_search_users_dialog_title}"> |
---|
143 | <div id="accordion"> |
---|
144 | <div class="ui-widget" align="right"> |
---|
145 | <fieldset class="search-field ui-corner-all" style> |
---|
146 | <span class="ui-icon ui-icon-search"></span> |
---|
147 | <input class="search" id="busca" onFocus="setFocus();" onBlur="removeFocus();" onkeypress="javascript: if(checkEnter(event)) {buscaContato(this.value); }" type="text" /> |
---|
148 | </fieldset> |
---|
149 | <fieldset class="search-catalog-options ui-corner-all"> |
---|
150 | <select id="combobox"> |
---|
151 | <!-- Pegar essas opções das preferências --> |
---|
152 | <option value="global">{lang_global_catalog}</option> |
---|
153 | <option value="personal">{lang_personal_catalog}</option> |
---|
154 | <option value="all">{lang_all_catalogs}</option> |
---|
155 | </select> |
---|
156 | </fieldset> |
---|
157 | <input class="button" type="button" value="Buscar" onClick="buscaContato(busca.value);"/> |
---|
158 | <input class="button" type="button" onClick="show_help()" style="background-image: url('./templates/default/images/information.png'); background-repeat: no-repeat;"/> |
---|
159 | </div> |
---|
160 | </div> |
---|
161 | <fieldset id="fieldset1" class="details-container ui-corner-all"> |
---|
162 | <legend>{lang_contact_details}</legend> |
---|
163 | <div style="overflow: auto; height: 230px;" id="detalhes_contato"></div> |
---|
164 | </fieldset> |
---|
165 | <div class="acc-list"> <ul id="selectable"></ul></div> |
---|
166 | <div class="demo" style="float: left; margin-top: 10px; width: 100%; height: 20px; padding:5px 0 0 0;"> |
---|
167 | <div id="slider" style="width: 448px;"></div> |
---|
168 | <p style="margin-top: -15px; margin-bottom: 0pt; margin-left: 453px; float: left;"> |
---|
169 | <label for="amount" style="padding-left: 6px;">{lang_page}: </label> |
---|
170 | <input type="text" id="amount-text" style="padding-left: 3px; border:0; font-weight:bold; width: 175px;" readonly="true"/> |
---|
171 | </p> |
---|
172 | </div> |
---|
173 | </div> |
---|
174 | <div style="display:none; width: auto; min-height: 0px; height: 380px;" id="dialog-modal_help" title="{lang_dialog_help} Help busca rápida de contatos"> |
---|
175 | <fieldset id="fieldset2"> |
---|
176 | <legend>{lang_help} Busca rápida de contatos</legend> |
---|
177 | <div> |
---|
178 | <strong>Para a utilização dessa funcionalidade, podem ser usados os seguintes atalhos:</strong><br><br><br> |
---|
179 | <ul> |
---|
180 | <li>Ir para a página anterior - Seta para esquerda</li> |
---|
181 | <li>Mover para contato acima - Seta para cima</li> |
---|
182 | <li>Mover para contato abaixo - Seta para baixo</li> |
---|
183 | <li>Mover para a próxima página - Seta para direita</li> |
---|
184 | <li>Adicionar contato selecionado - Enter</li> |
---|
185 | <li>Fechar - Esc</li> |
---|
186 | </ul> |
---|
187 | </div> |
---|
188 | </fieldset> |
---|
189 | </div> |
---|
190 | <div id="import-dialog" title="Importar Evento" style="display:none"> |
---|
191 | <p>Seleciona uma Agenda para o Evento :</p> |
---|
192 | <p> |
---|
193 | <select style="width:100%;" id="select-agenda"> |
---|
194 | </select> |
---|
195 | </p> |
---|
196 | <p> |
---|
197 | <label>Status : </label> |
---|
198 | </p> |
---|
199 | <p> |
---|
200 | <select style="width:100%;" id="select-status"> |
---|
201 | <option value="1">Eu vou</option> |
---|
202 | <option value="3">Não vou</option> |
---|
203 | <option value="2">Tentativa</option> |
---|
204 | </select> |
---|
205 | </p> |
---|
206 | </div> |
---|
207 | <div id="sandbox" class="expresso-calendar-container hidden"> |
---|
208 | </div> |
---|
209 | <!-- END list --> |
---|