dropdown.tpl

来自「SugarCRM5.1 开源PHP客户关系管理系统」· TPL 代码 · 共 126 行

TPL
126
字号
{*/********************************************************************************* * SugarCRM is a customer relationship management program developed by * SugarCRM, Inc. Copyright (C) 2004 - 2007 SugarCRM Inc. *  * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 3 as published by the * Free Software Foundation with the addition of the following permission added * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS. *  * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more * details. *  * You should have received a copy of the GNU General Public License along with * this program; if not, see http://www.gnu.org/licenses or write to the Free * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * 02110-1301 USA. *  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road, * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com. *  * The interactive user interfaces in modified source and object code versions * of this program must display Appropriate Legal Notices, as required under * Section 5 of the GNU General Public License version 3. *  * In accordance with Section 7(b) of the GNU General Public License version 3, * these Appropriate Legal Notices must retain the display of the "Powered by * SugarCRM" logo. If the display of the logo is not reasonably feasible for * technical reasons, the Appropriate Legal Notices must display the words * "Powered by SugarCRM". ********************************************************************************/*}{literal}<link rel="stylesheet" type="text/css" href="modules/ModuleBuilder/tpls/MBModule/dropdown.css" /><link rel="stylesheet" type="text/css" href="modules/ModuleBuilder/tpls/ListEditor.css" />{/literal}<div ><form name='dropdown_form'><input type='hidden' name='module' value='ModuleBuilder'><input type='hidden' name='action' value='{$action}'><input type='hidden' name='to_pdf' value='true'><input type='hidden' name='view_module' value='{$module->name}'><input type='hidden' name='view_package' value='{$package_name}'><input type='hidden' id='list_value' name='list_value' value=''>{if ($refreshTree)}<input type='hidden' name='refreshTree' value='1'>{/if}<table>	<tr>		<td colspan='3'>			<input id = "saveBtn" type='button' class='button' onclick='SimpleList.handleSave()' value='{$APP.LBL_SAVE_BUTTON_LABEL}'>			<input type='button' class='button' onclick='SimpleList.undo()' value='{$MOD.LBL_BTN_UNDO}'>			<input type='button' class='button' onclick='SimpleList.redo()' value='{$MOD.LBL_BTN_REDO}'>		</td>	</tr>	<tr>		<td colspan='2'>			<hr/>		</td>	</tr>	<tr>		<td>			<span class='mbLBLL'>{$MOD.LBL_DROPDOWN_TITLE_NAME}:&nbsp;</span>			{if $name }			<input type='hidden' id='dropdown_name' name='dropdown_name' value='{$dropdown_name}'>{$dropdown_name}			{else}			{$APP.LBL_NAME}:<input type='text' id='dropdown_name' name='dropdown_name' value={$prepopulated_name}>			{/if}	</tr>	<tr>		<td class='mbLBLL'>			{$MOD.LBL_DROPDOWN_LANGUAGE}:&nbsp;			{html_options name='dropdown_lang' options=$available_languages selected=$selected_lang onchange='this.form.action.value="dropdown";ModuleBuilder.handleSave("dropdown_form")'}		</td>	</tr>	<tr>		<td style='padding-top:10px;' class='mbLBLL'>{$MOD.LBL_DROPDOWN_ITEMS}:</td>	</tr>	<tr>		<td><b>{$MOD.LBL_DROPDOWN_ITEM_NAME}</b><span class='fieldValue'>[{$MOD.LBL_DROPDOWN_ITEM_LABEL}]<span></td>	</tr>	<tr>		<td colspan='3'>		    <ul id="ul1" class="listContainer">		    {foreach from=$options key='name' item='val'}			    <li class="draggable" id="{$name}" value=0><table width='100%'><tr><td><b>{$name}</b><input id='value_{$name}' value='{$name}' type = 'hidden'><span class='fieldValue' id='span_{$name}'>{if empty($val)}[{$MOD.LBL_BLANK}]{else}[{$val}]{/if}</span><span class='fieldValue' id='span_edit_{$name}' style='display:none'><input type='text' id='input_{$name}' value='{$val}' onBlur='SimpleList.setDropDownValue("{$name}", this.value, true)' ></span></td><td align='right'><a href='javascript:void(0)' onclick='SimpleList.editDropDownValue("{$name}", true)'>{$editImage}</a>&nbsp;<a href='javascript:void(0)' onclick='SimpleList.deleteDropDownValue("{$name}", true)'>{$deleteImage}</a></td></tr></table></li>			{/foreach}		   </ul>		   </form>		</td>	</tr>	<tr>		<td colspan='3'>		   <table width='100%'>		    	<tr>		    		<td class='mbLBLL'>{$MOD.LBL_DROPDOWN_ITEM_NAME}:</td><td class='mbLBLL'>{$MOD.LBL_DROPDOWN_ITEM_LABEL}:</td>		    	</tr>		    	<tr>		    		<td><input type='text' id='drop_value'></td><td><input type='text' id='drop_name'></td>		    	</tr>		    	<tr><td><input type='button' id='dropdownaddbtn' value='{$APP.LBL_ADD_BUTTON}' class='button'></td></tr>		    </table>   		</td>   	</tr>  </table></div>{literal}<script>eval({/literal}{$ul_list}{literal});SimpleList.ul_list = list;SimpleList.init({/literal}"{$editImage}"{literal}, {/literal}"{$deleteImage}"{literal});//ModuleBuilder.helpRegisterByID('dropdown_form', 'input');//ModuleBuilder.helpSetup('dropdowneditor','default');ModuleBuilder.helpSetup('dropdowns','editdropdown');</script>{/literal}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?