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

This commit is contained in:
zero 2007-06-21 09:10:53 +00:00
parent 51279ae647
commit e5ed227984
9 changed files with 435 additions and 0 deletions

View file

@ -0,0 +1,31 @@
/**
* @file modules/ttimporter/js/importer_admin.js
* @author zero (zero@nzeo.com)
* @brief importer에서 사용하는 javascript
**/
/* Step Complete Import */
function completeImport(ret_obj) {
var message = ret_obj['message'];
var is_finished = ret_obj['is_finished'];
var position = ret_obj['position'];
alert(message);
alert(position);
xGetElementById("import_status").style.display = "block";
if(is_finished=='Y') {
alert(ret_obj["message"]);
location.href = location.href;
} else {
var fo_obj = xGetElementById('fo_import');
fo_obj.position.value = position;
xInnerHtml('import_status', message);
procFilter(fo_obj, import_tt);
}
}
function doManualProcess() {
var fo_obj = xGetElementById('fo_import');
procFilter(fo_obj, import_tt);
}