'use strict'; var fnPageInit = function () { var canDo = new CanDo({ sortField: 'GoTop DESC,GoTop_Time DESC,CreateDate', sortOrder: 'desc', /** * 當前程式所有ID名稱集合 */ idKeys: ['OrgID', 'AnnouncementID'], /** * Grid欄位設置(可以是 function) */ gridFields: [ { name: "RowIndex", title: 'common.RowNumber', align: 'center', width: 50, sorting: false }, { name: "Ann_Type", title: 'Announcement_Upd.Ann_Type', width: 120, align: 'center', itemTemplate: function (val, item) { return $('#Ann_Type option[value=' + val + ']').text().split('-')[1]; } }, { name: "Title", title: 'Announcement_Upd.Title', width: 300 }, { name: "StartDateTime", title: 'Announcement_Upd.StartDateTime', width: 120, align: 'center', itemTemplate: function (val, item) { return newDate(val, 'date'); } }, { name: "EndDateTime", title: 'Announcement_Upd.EndDateTime', width: 120, align: 'center', itemTemplate: function (val, item) { return newDate(val, 'date'); } }, {// ╠common.GoTop⇒置頂╣ name: "GoTop", title: 'common.GoTop', width: 100, align: 'center', itemTemplate: function (val, item) { var oCheckBox = $('', { type: 'checkbox', checked: val, click: function () { var oPm = { AnnouncementID: item.AnnouncementID }; if (this.checked) { oPm.GoTop = true; } else { oPm.GoTop = false; } g_api.ConnectLite(canDo.ProgramId, 'UpdateGoTop', oPm, function (res) { if (res.RESULT) { canDo.Grid.openPage(canDo.bToFirstPage ? 1 : canDo.pageIndex); } }); } }); return oCheckBox; } }, { title: 'common.Action', width: 100, align: 'center', itemTemplate: function (val, item) { var oDom = $('', { html: i18next.t('common.See'),// ╠common.See⇒查看╣ class: 'a-url', click: function () { fnOpenAnn(item.AnnouncementID); return false; } }); return $('