[+] BO : #PSFV-94 - new controller AdminTags, thanks again to Julien Breux \!

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@10162 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
mMarinetti
2011-11-16 10:08:14 +00:00
parent effd1924f8
commit 58fbf5f9e8
4 changed files with 195 additions and 136 deletions
+2
View File
@@ -19,6 +19,8 @@ input[type="text"],input[type="password"],input[type="file"],textarea {border:1p
select { border:1px solid #ccc;}
select[disabled="disabled"], input[disabled="disabled"],textarea[disabled="disabled"] {border: 1px solid #CCCCCC;color: #AAAAAA}
.header_module{background:url(header_module.png);padding-left: 0.5em;padding-top: 0.8em;height:20px;color: #812143;border:solid 1px #CCC;}
.double_select select{width:300px;height:160px;}
.double_select a{text-align:center;display:block;border:1px solid #aaa;text-decoration:none;background-color:#fafafa;color:#123456;margin:2px;padding:2px}
/*BUTTON*/
.button{background: -moz-linear-gradient(center top , #F9F9F9, #E3E3E3) repeat scroll 0 0 transparent;
+87
View File
@@ -0,0 +1,87 @@
{*
* 2007-2011 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2011 PrestaShop SA
* @version Release: $Revision$
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*}
{extends file="helper/form/form.tpl"}
{block name="other_input"}
{if $key eq 'selects'}
<div class="margin-form">
<h3>{l s='Products'}</h3>
<table class="double_select">
<tr>
<td>
<select multiple id="select_left" name="products[]">
{foreach from=$field.products item='product'}
<option value="{$product.id_product}">{$product.name}</option>
{/foreach}
</select>
<span class="hint" name="help_box">{l s='double click to move to other column'}<span class="hint-pointer">&nbsp;</span></span>
<br /><br />
<a href="#" id="move_to_right" class="multiple_select_remove">
{l s='Remove'} &gt;&gt;
</a>
</td>
<td style="padding-left:20px;">
<select multiple id="select_right">
{foreach from=$field.products_unselected item='product'}
<option value="{$product.id_product}">{$product.name}</option>
{/foreach}
</select>
<span class="hint" name="help_box">{l s='double click to move to other column'}<span class="hint-pointer">&nbsp;</span></span>
<br /><br />
<a href="#" id="move_to_left" class="multiple_select_add">
&lt;&lt; {l s='Add'}
</a>
</div>
</td>
</tr>
</table>
</div>
<div class="clear">&nbsp;</div>
<script type="text/javascript">
$(document).ready(function(){
$('#move_to_right').click(function(){
return !$('#select_left option:selected').remove().appendTo('#select_right');
})
$('#move_to_left').click(function(){
return !$('#select_right option:selected').remove().appendTo('#select_left');
});
$('#select_left option').live('dblclick', function(){
$(this).remove().appendTo('#select_right');
});
$('#select_right option').live('dblclick', function(){
$(this).remove().appendTo('#select_left');
});
});
$('#tag_form').submit(function()
{
$('#select_left option').each(function(i){
$(this).attr("selected", "selected");
});
});
</script>
{/if}
{/block}