File: /www/wwwroot/oa.sanjiangapp.com/app/sys/tree/js/children.js
$(document).ready(function()
{
$.setAjaxForm('#childForm');
var initSortable = function()
{
$('#childList').sortable({trigger: '.sort-handle', selector: '.category', dragCssClass: ''});
}
var setChildrenKey = function()
{
maxID = v.maxID;
$('[value=new]').each(function()
{
maxID ++;
$(this).parents('.category').find('[id*=children]').attr('name', 'children[' + maxID + ']');
$(this).attr('name', 'mode[' + maxID + ']');
})
}
$.setAjaxLoader('.btn-back.ajax', '#categoryBox');
initSortable();
setChildrenKey();
});