b0f9d1b7bf14d8634d4c1822799ceba69ae2cc59.svn-base 654 B

12345678910111213141516171819
  1. BemsWebApplication.MaterialCodeReleaseType = function(params, viewInfo) {
  2. 'use strict';
  3. var viewModel = BWA.DataGrid.createViewWithDataGrid(params, viewInfo, 'FmsMaterialCodeReleaseType', {
  4. columns: [
  5. { dataField: 'ReleaseTypeId', caption: '번호', width: '20%', alignment: 'center' },
  6. { dataField: 'Name', caption: $G('releaseType'), width: '60%', alignment: 'center' },
  7. { dataField: 'Description', caption: $G('description'), width: '60%', alignment: 'center' }
  8. ],
  9. isUseSiteId: false,
  10. notDeleteInPopup: true,
  11. popupWidth: 480,
  12. });
  13. return viewModel;
  14. };