페이지별로 위젯 캐시파일 재생성 하는 기능 추가

git-svn-id: http://xe-core.googlecode.com/svn/trunk@2204 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-08-06 05:51:31 +00:00
parent 822fc01311
commit 76b5c7f48e
12 changed files with 52 additions and 5 deletions

View file

@ -70,3 +70,16 @@ function doChangeCategory(fo_obj) {
}
return true;
}
/* 위젯 재컴파일 */
function doRemoveWidgetCache(module_srl) {
var params = new Array();
params["module_srl"] = module_srl;
exec_xml('page', 'procPageAdminRemoveWidgetCache', params, completeRemoveWidgetCache);
}
function completeRemoveWidgetCache(ret_obj) {
var message = ret_obj['message'];
alert(message);
location.reload();
}