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

This commit is contained in:
zero 2007-04-17 02:27:15 +00:00
parent 2fc90cfebc
commit 311d0fb0d7
3 changed files with 44 additions and 18 deletions

View file

@ -13,3 +13,14 @@ function doDeleteLayout(layout_srl) {
procFilter(fo_obj, delete_layout);
}
/* 메뉴 관리로 이동 */
function doMenuManagement(menu_id) {
var fo_obj = xGetElementById("fo_layout");
var sel_obj = fo_obj[menu_id];
if(sel_obj.selectedIndex == 0) return;
var menu_srl = sel_obj.options[sel_obj.selectedIndex].value;
var url = location.href.setQuery('act','dispMenuAdminManagement').setQuery('menu_srl',menu_srl);
location.href = url;
}