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