You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
2.6 KiB

2 years ago
  1. 'use strict';
  2. var fnPageInit = function () {
  3. var canDo = new CanDo({
  4. sortField: 'OrderByValue',
  5. sortOrder: 'asc',
  6. /**
  7. * 當前程式所有ID名稱集合
  8. */
  9. idKeys: ['OrgID', 'ArgumentClassID', 'ArgumentID'],
  10. /**
  11. * Grid欄位設置可以是 function
  12. */
  13. gridFields: [
  14. { name: "RowIndex", title: 'common.RowNumber', align: 'center', width: 50, sorting: false },
  15. { name: "ArgumentClassID", title: 'ArgumentClassMaintain_Qry.ArgumentClassID', width: 300 },
  16. { name: "ArgumentClassName", title: 'ArgumentClassMaintain_Qry.ArgumentClassName', width: 200 },
  17. {
  18. name: "Effective", title: 'common.Status', width: 200, align: 'center', itemTemplate: function (val) {
  19. return val === 'Y' ? i18next.t('common.Enable') : i18next.t('common.Disable');
  20. }
  21. },
  22. {
  23. name: "OrderByValue", title: 'common.OrderByValue', type: "select", width: 200,
  24. itemTemplate: function (val, item) {
  25. return this._createSelect = $("<select>", {
  26. class: 'w70',
  27. html: createOptions(item.OrderCount),
  28. change: function () {
  29. var sOldValue = val,
  30. sNewValue = this.value;
  31. g_api.ConnectLite(canDo.ProgramId, canDo._api.order, {
  32. Id: item.ArgumentClassID,
  33. OldOrderByValue: sOldValue,
  34. NewOrderByValue: sNewValue
  35. }, function (res) {
  36. if (res.RESULT) {
  37. showMsg(i18next.t('message.Update_Success'), 'success');// ╠message.Update_Success⇒更新成功╣
  38. canDo.Grid.openPage(canDo.options.toFirstPage ? 1 : canDo.options.queryPageidx);
  39. }
  40. else {
  41. showMsg(i18next.t('message.Update_Failed') + '<br>' + res.MSG, 'error'); // ╠message.Update_Failed⇒更新失敗╣
  42. }
  43. });
  44. }
  45. }).val(val);
  46. }
  47. }
  48. ],
  49. /**
  50. * 頁面初始化
  51. * @param {Object} pargs CanDo 對象
  52. */
  53. pageInit: function (pargs) {
  54. pargs._reSetQueryPm();
  55. pargs._initGrid();
  56. }
  57. });
  58. };
  59. require(['base', 'jsgrid', 'cando'], fnPageInit);