| @@ -53,6 +53,7 @@ export default function SearchPublicNoticeTable({ searchCriteria }) { | |||||
| { | { | ||||
| field: 'actions', | field: 'actions', | ||||
| headerName: 'Application No.', | headerName: 'Application No.', | ||||
| sortable: false, | |||||
| width: 150, | width: 150, | ||||
| cellClassName: 'actions', | cellClassName: 'actions', | ||||
| renderCell: (params) => { | renderCell: (params) => { | ||||
| @@ -63,6 +64,7 @@ export default function SearchPublicNoticeTable({ searchCriteria }) { | |||||
| id: 'status', | id: 'status', | ||||
| field: 'status', | field: 'status', | ||||
| headerName: 'Status', | headerName: 'Status', | ||||
| sortable: false, | |||||
| width: 240, | width: 240, | ||||
| renderCell: (params) => { | renderCell: (params) => { | ||||
| return [StatusUtils.getStatusEng(params)] | return [StatusUtils.getStatusEng(params)] | ||||
| @@ -72,6 +74,7 @@ export default function SearchPublicNoticeTable({ searchCriteria }) { | |||||
| id: 'withProof', | id: 'withProof', | ||||
| field: 'withProof', | field: 'withProof', | ||||
| headerName: 'With Proof', | headerName: 'With Proof', | ||||
| sortable: false, | |||||
| width: 120, | width: 120, | ||||
| renderCell: (params) => { | renderCell: (params) => { | ||||
| return [params.row.proofId != null ? "Yes" : ""] | return [params.row.proofId != null ? "Yes" : ""] | ||||
| @@ -81,6 +84,7 @@ export default function SearchPublicNoticeTable({ searchCriteria }) { | |||||
| id: 'created', | id: 'created', | ||||
| field: 'created', | field: 'created', | ||||
| headerName: 'Submit Date', | headerName: 'Submit Date', | ||||
| sortable: false, | |||||
| flex: 1, | flex: 1, | ||||
| minWidth: 200, | minWidth: 200, | ||||
| valueGetter: (params) => { | valueGetter: (params) => { | ||||
| @@ -91,6 +95,7 @@ export default function SearchPublicNoticeTable({ searchCriteria }) { | |||||
| id: 'contactPerson', | id: 'contactPerson', | ||||
| field: 'contactPerson', | field: 'contactPerson', | ||||
| headerName: 'Client', | headerName: 'Client', | ||||
| sortable: false, | |||||
| minWidth: 250, | minWidth: 250, | ||||
| flex: 2, | flex: 2, | ||||
| renderCell: (params) => { | renderCell: (params) => { | ||||
| @@ -106,6 +111,7 @@ export default function SearchPublicNoticeTable({ searchCriteria }) { | |||||
| id: 'issueNoAndCode', | id: 'issueNoAndCode', | ||||
| field: 'issueNoAndCode', | field: 'issueNoAndCode', | ||||
| headerName: 'Gazette Issue No. / Gazette Code', | headerName: 'Gazette Issue No. / Gazette Code', | ||||
| sortable: false, | |||||
| flex: 1.5, | flex: 1.5, | ||||
| minWidth: 350, | minWidth: 350, | ||||
| renderCell: (params) => ( | renderCell: (params) => ( | ||||