dolibarr/htdocs/core/tpl/ajaxrow.tpl.php
2010-09-18 15:34:06 +00:00

45 lines
1.5 KiB
PHP

<?php
/* Copyright (C) 2010 Regis Houssin <regis@dolibarr.fr>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* 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, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* $Id$
*/
?>
<!-- BEGIN PHP TEMPLATE -->
<script>
jQuery(document).ready(function(){
/* jQuery(".imgup").hide(); */
/* jQuery(".imgdown").hide(); */
jQuery(".lineupdown").removeAttr('href');
jQuery("#objectline").tableDnD({
onDrop: function(table, row) {
var roworder = cleanSerialize(jQuery("#objectline").tableDnDSerialize());
var element = "<?php echo $object->table_element_line; ?>";
jQuery.get("<?php echo DOL_URL_ROOT; ?>/core/ajaxrow.php?roworder="+roworder+"&element="+element);
},
dragHandle: "tdlineupdown"
});
jQuery(".tdlineupdown").hover(function() {
jQuery(this).addClass('showDragHandle');
}, function() {
jQuery(this).removeClass('showDragHandle');
});
});
</script>
<!-- END PHP TEMPLATE -->