12345678910111213141516 |
- BemsWebApplication.LegalInspectionAgency = function( params, viewInfo ) {
- "use strict";
- var viewModel = BWA.DataGrid.createViewWithDataGrid( params, viewInfo, 'FmsWorkCodeLegalInspectionAgency', {
- columns: [
- { dataField: 'Number', caption: '번호', width: '20%', alignment: 'center' },
- { dataField: 'Name', caption: $G( 'facilityCodeCorporation' ), width: '60%', alignment: 'center' },
- utils.datagrid.columnIsUse( '20%' )
- ],
- popupWidth: 480,
- } );
-
- return viewModel;
- };
|