123456789101112131415161718 |
- BemsWebApplication.WorkCodeProgress = function( params, viewInfo ) {
- "use strict";
- var viewModel = BWA.DataGrid.createViewWithDataGrid( params, viewInfo, 'FmsWorkCodeProgress', {
- columns: [
- { dataField: 'WorkProgressId', caption: $G('number'), width: '15%', alignment: 'center' },
- { dataField: 'Name', caption: $G( 'workCodeProgressName' ), width: '35%', alignment: 'center' },
- { dataField: 'Description', caption: $G('description'), width: '50%', alignment: 'center' }
- ],
- popupWidth: 480,
- isUseSiteId: false,
- //notDeleteInPopup: true // hcLee 2015 03 06
- useDeleteButton: false // hcLee 2015 03 06
- });
-
- return viewModel;
- };
|