gagamel 5 năm trước cách đây
mục cha
commit
db1ded2369

+ 1 - 1
style24.admin/src/main/webapp/WEB-INF/views/display/CategoryForm.html

@@ -200,7 +200,7 @@
 		},
 		{
 			headerName: "카테고리유형", field: "cateType", width: 150, cellClass: 'text-center',
-			cellRenderer: function (params) { gagaAgGrid.lookupValue(cateTypeList, params.value); }
+			cellRenderer: function (params) { return gagaAgGrid.lookupValue(cateTypeList, params.value); }
 		},
 		{headerName: "말단여부", field: "leafYn", width: 80, cellClass: 'text-center'},
 		{headerName: "노출순서", field: "dispOrd", width: 100, cellClass: 'text-center'},

+ 4 - 3
style24.admin/src/main/webapp/WEB-INF/views/system/MenuForm.html

@@ -284,14 +284,15 @@
 	
 	// specify the columns
 	var columnDefs = [
-		{headerName: "메뉴명", field: "menuNm", width: 200,
+		{
+			headerName: "메뉴명", field: "menuNm", width: 200,
 			cellRenderer: function(params) {
 				return '<a href="javascript:void(0);">' + params.value + '</a>';
 			}
 		},
-		{headerName: "메뉴구분", field: "menuGb", width: 100, cellClass: 'text-center',
+		{
+			headerName: "메뉴구분", field: "menuGb", width: 100, cellClass: 'text-center',
 			cellRenderer: function(params) { return params.value == 'M' ? '메뉴' : '프로그램'; }
-			/* valueFormatter: function(params) { return params.value == 'M' ? '메뉴' : '프로그램'; } */
 		},
 		{headerName: "메뉴권한코드", field: "roleCds", hide: true},
 		{headerName: "메뉴권한", field: "roleNms", width: 400, cellClass: 'text-center'},