1234567891011121314151617181920 |
- BemsWebApplication.WorkCodeHolidayWorkType = function( params, viewInfo ) {
- "use strict";
- var viewModel = BWA.DataGrid.createViewWithDataGrid( params, viewInfo, 'FmsWorkCodeHolidayWorkType', {
- columns: [
- { dataField: 'HolidayWorkTypeId', caption: '번호', width: '20%', alignment: 'center' },
- { dataField: 'Name', caption: $G( 'facilityCodeName' ), width: '60%', alignment: 'center' },
- utils.datagrid.columnIsUse( '20%' )
- ],
- notDeleteInPopup: true,
- popupWidth: 480,
- useDeleteButton:false,
- //visibleDeleteButton:false,
- //isUseSiteId:false,
- } );
-
- return viewModel;
- };
|