git-svn-id: http://xe-core.googlecode.com/svn/trunk@658 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-03-26 08:01:55 +00:00
parent 749dc4a9ab
commit ed4637125a
5 changed files with 23 additions and 2 deletions

View file

@ -12,6 +12,14 @@ function doDisableComponent(component_name) {
exec_xml('editor', 'procDisableComponent', params, completeUpdate);
}
function doMoveListOrder(component_name, mode) {
var params = new Array();
params['component_name'] = component_name;
params['mode'] = mode;
exec_xml('editor', 'procMoveListOrder', params, completeUpdate);
}
function completeUpdate(ret_obj) {
alert(ret_obj['message']);
location.href = location.href;