9445ddd13f8a97383ee124129421602987d964fc.svn-base 649 B

1234567891011121314151617181920
  1. BemsWebApplication.MaterialCodeProgress = function(params, viewInfo) {
  2. 'use strict';
  3. var viewModel = BWA.DataGrid.createViewWithDataGrid(params, viewInfo, 'FmsMaterialCodeProgress', {
  4. columns: [
  5. { dataField: 'ProgressId', caption: '번호', width: '15%', alignment: 'center' },
  6. { dataField: 'Name', caption: $G('progressStatus'), width: '35%', alignment: 'center' },
  7. { dataField: 'Description', caption: $G('description'), width: '50%', alignment: 'center' }
  8. ],
  9. isUseSiteId: false,
  10. notDeleteInPopup: true,
  11. popupWidth: 480,
  12. });
  13. return viewModel;
  14. };