123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- define([
- "dojo/_base/declare",
- "dojo/_base/lang",
- "src/nlsHPCC",
- "dojo/_base/array",
- "dgrid/selector",
- "hpcc/GridDetailsWidget",
- "hpcc/DelayLoadWidget",
- "src/ESPQuery",
- "src/ESPUtil"
- ], function (declare, lang, nlsHPCCMod, arrayUtil,
- selector,
- GridDetailsWidget, DelayLoadWidget, ESPQuery, ESPUtil) {
- var nlsHPCC = nlsHPCCMod.default;
- return declare("QuerySetLogicalFilesWidget", [GridDetailsWidget], {
- i18n: nlsHPCC,
- gridTitle: nlsHPCC.title_QuerySetLogicalFiles,
- idProperty: "File",
- queryId: null,
- querySet: null,
- init: function (params) {
- if (this.inherited(arguments))
- return;
- this.query = ESPQuery.Get(params.QuerySetId, params.Id);
- this.refreshGrid();
- },
- createGrid: function (domID) {
- var context = this;
- var retVal = new declare([ESPUtil.Grid(true, true)])({
- store: this.store,
- columns: {
- col1: selector({ width: 27, selectorType: 'checkbox' }),
- File: { label: this.i18n.LogicalFiles }
- }
- }, domID);
- return retVal;
- },
- createDetail: function (id, row, params) {
- return new DelayLoadWidget({
- id: id,
- title: row.File,
- closable: true,
- delayWidget: "LFDetailsWidget",
- hpcc: {
- type: "LFDetailsWidget",
- params: {
- Name: row.File
- }
- }
- });
- },
- refreshGrid: function (args) {
- var context = this;
- this.query.refresh().then(function (response) {
- var logicalFiles = [];
- if (lang.exists("LogicalFiles.Item", context.query)) {
- arrayUtil.forEach(context.query.LogicalFiles.Item, function (item, idx) {
- var file = {
- File: item
- }
- logicalFiles.push(file);
- });
- }
- context.store.setData(logicalFiles);
- context.grid.refresh();
- });
- }
- });
- });
|