File: /www/wwwroot/oa.sanjiangapp.com/app/sys/tree/js/edit.js
$(document).ready(function()
{
$.setAjaxForm('#editForm', function()
{
setTimeout(function(){
/* After the form posted, refresh the treeMenuBox content. */
source = createLink('tree', 'browse', 'type=' + v.type + '&startModule=0&root=' + v.root) + ' #treeMenuBox';
$('#treeMenuBox').parent().load(source, function()
{
/* Rebuild the tree menu after treeMenuBox refreshed. */
$(".tree").tree('expand');
});
$('#categoryBox').load($('#editForm').attr('action'), function()
{
$.zui.initPage($('#categoryBox'));
});
}, 1200);
});
$.setAjaxLoader('.btn-back.ajax', '#categoryBox');
$('.group-item label.checkbox').css('float', 'left').css('margin-right', '10px').css('width', '100px');
});