mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-12 23:14:18 +01:00
The new 2.0 setup is under way...
SVN:trunk[2179]
This commit is contained in:
@@ -335,4 +335,16 @@ function GetSelectedModules()
|
||||
var aModules = new Array();
|
||||
$(':input[name^=module]').each(function() { aModules.push($(this).val()); } );
|
||||
return aModules.join(',');
|
||||
}
|
||||
}
|
||||
|
||||
function WizardAsyncAction(sActionCode, oParams)
|
||||
{
|
||||
var sStepClass = $('#_class').val();
|
||||
var sStepState = $('#_state').val();
|
||||
|
||||
var oMap = { operation: 'async_action', step_class: sStepClass, step_state: sStepState, code: sActionCode, params: oParams };
|
||||
|
||||
$.post(GetAbsoluteUrlAppRoot()+'setup/ajax.dataloader.php', oMap, function(data) {
|
||||
$('#async_action').html(data);
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user