mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-22 05:15:29 +09:00
Import모듈의 모듈/ttxml의 대상 모듈 선택시 모듈 선택기 사용하도록 코드 수정
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5324 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
2668048f47
commit
6e902b808f
3 changed files with 12 additions and 13 deletions
|
|
@ -86,7 +86,7 @@ function completePreProcessing(ret_obj, response_tags) {
|
|||
fo_obj.key.value = key;
|
||||
|
||||
var fo_import = xGetElementById('fo_import');
|
||||
if(fo_import && fo_import.target_module) fo_obj.target_module.value = fo_import.target_module.options[fo_import.target_module.selectedIndex].value;
|
||||
if(fo_import && fo_import.target_module) fo_obj.target_module.value = fo_import.target_module.value;
|
||||
if(fo_import && fo_import.user_id) fo_obj.user_id.value = fo_import.user_id.value;
|
||||
|
||||
fo_obj.unit_count.value = fo_import.unit_count.options[fo_import.unit_count.selectedIndex].value;
|
||||
|
|
@ -160,3 +160,10 @@ function displayProgress(total, cur) {
|
|||
status += '<div class="clear"></div></div>';
|
||||
xInnerHtml('status', status);
|
||||
}
|
||||
|
||||
function insertSelectedModule(id, module_srl, mid, browser_title) {
|
||||
var obj= xGetElementById('_'+id);
|
||||
var sObj = xGetElementById(id);
|
||||
sObj.value = module_srl;
|
||||
obj.value = browser_title+' ('+mid+')';
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue