|
|
@@ -379,7 +379,15 @@
|
|
|
var columCategoryDefs = [
|
|
|
{width: 40, minWidth: 40, cellClass: 'text-center', headerCheckboxSelection: true, checkboxSelection: true, filter: false},
|
|
|
{headerName: "자동전시카테고리코드", field: "cateCd", width: 150, cellClass: 'text-center'},
|
|
|
- {headerName: "자동전시카테고리", field: "fullCateNm", width: 400, cellClass: 'text-left'},
|
|
|
+ {headerName: "자동전시카테고리", field: "fullCateNm", width: 400, cellClass: 'text-left',
|
|
|
+ cellRenderer: function (params) {
|
|
|
+ if (gagajf.isNull( params.value)){
|
|
|
+ return params.value;
|
|
|
+ }else{
|
|
|
+ return params.value.replaceAll(">", ">");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
{headerName: "카테고리1", field: "cateCd1", width: 150, cellClass: 'text-left', hide: true},
|
|
|
{headerName: "카테고리2", field: "cateCd2", width: 150, cellClass: 'text-left', hide: true},
|
|
|
{headerName: "카테고리3", field: "cateCd3", width: 150, cellClass: 'text-left', hide: true},
|