l2000 发表于 2020-11-19 00:07:38

同一列下拉框,每行下拉框里的可选项数目不一样

MultiRow控件,想实现每行下拉框里的可选项数目不一样,尝试利用DataMap,但是效果是同一列的下拉框内的可选项一致。如何实现第一行下拉框里的可选项是A,B,C,第二行下拉框里可选项是B,C。

KevinChen 发表于 2020-11-19 09:54:43

你好,可以采用自定义编辑框的方法实现:
https://demo.grapecity.com.cn/wijmo/demos/Grid/CustomCells/CustomEditors/purejs

l2000 发表于 2020-11-19 10:57:51

你好,我看了下这个自定义编辑器。实现的是下拉框的样式自定义,但是同一列的下拉框里的内容是一样的,例如Product这一列,都是3个选项
      { id: 0, name: 'Widget', unitPrice: 23.43 },
      { id: 1, name: 'Gadget', unitPrice: 12.33 },
      { id: 2, name: 'Doohickey', unitPrice: 53.07 }
------------------------------------------------------------
有没有第一行内只显示2个选项,
{ id: 0, name: 'Widget', unitPrice: 23.43 },
{ id: 1, name: 'Gadget', unitPrice: 12.33 },
第二行内显示3个选项,
{ id: 0, name: 'Widget', unitPrice: 23.43 },
{ id: 1, name: 'Gadget', unitPrice: 12.33 },
{ id: 2, name: 'Doohickey', unitPrice: 53.07 }
这样的示例,谢谢

l2000 发表于 2020-11-19 12:03:52

你好,已经实现了,需要重写DataMap的getDisplayValues()这个方法

KevinChen 发表于 2020-11-19 13:01:55

由于是完全自定义的编辑器,所以可以自由配置,根据条件动态修改。我改了个示例,你参考一下:

关键代码如图:


完整代码如下:
import 'bootstrap.css';
import '@grapecity/wijmo.styles/wijmo.css';
import './styles.css';
import * as wjGrid from '@grapecity/wijmo.grid';
import * as wjInput from '@grapecity/wijmo.input';
import * as wjCore from '@grapecity/wijmo';
//
// *** CustomGridEditor class (transpiled from TypeScript) ***
//
export class CustomGridEditor {
    /**
   * Initializes a new instance of a CustomGridEditor.
   */
    constructor(flex, binding, edtClass, options) {
      // save references
      this._grid = flex;
      this._col = flex.columns.getColumn(binding);
      // create editor
      this._ctl = new edtClass(document.createElement('div'), options);
      // connect grid events
      flex.beginningEdit.addHandler(this._beginningEdit, this);
      flex.sortingColumn.addHandler(() => {
            this._commitRowEdits();
      });
      flex.scrollPositionChanged.addHandler(() => {
            if (this._ctl.containsFocus()) {
                flex.focus();
            }
      });
      flex.selectionChanging.addHandler((s, e) => {
            if (e.row != s.selection.row) {
                this._commitRowEdits();
            }
      });
      // connect editor events
      this._ctl.addEventListener(this._ctl.hostElement, 'keydown', (e) => {
            switch (e.keyCode) {
                case wjCore.Key.Tab:
                case wjCore.Key.Enter:
                  e.preventDefault(); // TFS 255685
                  this._closeEditor(true);
                  this._grid.focus();
                  // forward event to the grid so it will move the selection
                  var evt = document.createEvent('HTMLEvents');
                  evt.initEvent('keydown', true, true);
                  'altKey,metaKey,ctrlKey,shiftKey,keyCode'.split(',').forEach((prop) => {
                        evt = e;
                  });
                  this._grid.hostElement.dispatchEvent(evt);
                  break;
                case wjCore.Key.Escape:
                  this._closeEditor(false);
                  this._grid.focus();
                  break;
            }
      });
      // close the editor when it loses focus
      this._ctl.lostFocus.addHandler(() => {
            setTimeout(() => {
                if (!this._ctl.containsFocus()) {
                  this._closeEditor(true); // apply edits and close editor
                  this._grid.onLostFocus(); // commit item edits if the grid lost focus
                }
            });
      });
      // commit edits when grid loses focus
      this._grid.lostFocus.addHandler(() => {
            setTimeout(() => {
                if (!this._grid.containsFocus() && !CustomGridEditor._isEditing) {
                  this._commitRowEdits();
                }
            });
      });
      // open drop-down on f4/alt-down
      this._grid.addEventListener(this._grid.hostElement, 'keydown', (e) => {
            // open drop-down on f4/alt-down
            this._openDropDown = false;
            if (e.keyCode == wjCore.Key.F4 ||
                (e.altKey && (e.keyCode == wjCore.Key.Down || e.keyCode == wjCore.Key.Up))) {
                var colIndex = this._grid.selection.col;
                if (colIndex > -1 && this._grid.columns == this._col) {
                  this._openDropDown = true;
                  this._grid.startEditing(true);
                  e.preventDefault();
                }
            }
            // commit edits on Enter (in case we're at the last row, TFS 268944)
            if (e.keyCode == wjCore.Key.Enter) {
                this._commitRowEdits();
            }
      }, true);
      // close editor when user resizes the window
      // REVIEW: hides editor when soft keyboard pops up (TFS 326875)
      window.addEventListener('resize', () => {
            if (this._ctl.containsFocus()) {
                this._closeEditor(true);
                this._grid.focus();
            }
      });
    }
    // gets an instance of the control being hosted by this grid editor
    get control() {
      return this._ctl;
    }
    // handle the grid's beginningEdit event by canceling the built-in editor,
    // initializing the custom editor and giving it the focus.
    _beginningEdit(grid, args) {
      // check that this is our column
      if (grid.columns != this._col) {
            return;
      }
      // check that this is not the Delete key
      // (which is used to clear cells and should not be messed with)
      var evt = args.data;
      if (evt && evt.keyCode == wjCore.Key.Delete) {
            return;
      }
      // cancel built-in editor
      args.cancel = true;
      // save cell being edited
      this._rng = args.range;
      CustomGridEditor._isEditing = true;
      // initialize editor host
      var rcCell = grid.getCellBoundingRect(args.row, args.col), rcBody = document.body.getBoundingClientRect(), ptOffset = new wjCore.Point(-rcBody.left, -rcBody.top), zIndex = (args.row < grid.frozenRows || args.col < grid.frozenColumns) ? '3' : '';
      wjCore.setCss(this._ctl.hostElement, {
            position: 'absolute',
            left: rcCell.left - 1 + ptOffset.x,
            top: rcCell.top - 1 + ptOffset.y,
            width: rcCell.width + 1,
            height: grid.rows.renderHeight + 1,
            borderRadius: '0px',
            zIndex: zIndex,
      });
      // initialize editor content
      debugger;
      // 在这里动态修改下拉项(偶数行):
      if(this._col.binding == "country" && args.row % 2 == 0){
            // 保存数据源
            if(!this._ctlSourceCollection){
                this._ctlSourceCollection = this._ctl.collectionView.sourceCollection;
            }
            this._ctl.collectionView.sourceCollection = ["China"];
      }else{
            this._ctl.collectionView.sourceCollection = this._ctlSourceCollection;
      }

      if (!wjCore.isUndefined(this._ctl['text'])) {
            this._ctl['text'] = grid.getCellData(this._rng.row, this._rng.col, true);
      }
      else {
            throw 'Can\'t set editor value/text...';
      }
      // start editing item
      var ecv = grid.editableCollectionView, item = grid.rows.dataItem;
      if (ecv && item && item != ecv.currentEditItem) {
            setTimeout(function () {
                grid.onRowEditStarting(args);
                ecv.editItem(item);
                grid.onRowEditStarted(args);
            }, 50); // wait for the grid to commit edits after losing focus
      }
      // activate editor
      document.body.appendChild(this._ctl.hostElement);
      this._ctl.focus();
      setTimeout(() => {
            // get the key that triggered the editor
            var key = (evt && evt.charCode > 32)
                ? String.fromCharCode(evt.charCode)
                : null;
            // get input element in the control
            var input = this._ctl.hostElement.querySelector('input');
            // send key to editor
            if (input) {
                if (key) {
                  input.value = key;
                  wjCore.setSelectionRange(input, key.length, key.length);
                  var evtInput = document.createEvent('HTMLEvents');
                  evtInput.initEvent('input', true, false);
                  input.dispatchEvent(evtInput);
                }
                else {
                  input.select();
                }
            }
            // give the control focus
            if (!input && !this._openDropDown) {
                this._ctl.focus();
            }
            // open drop-down on F4/alt-down
            if (this._openDropDown && this._ctl instanceof wjInput.DropDown) {
                this._ctl.isDroppedDown = true;
                this._ctl.dropDown.focus();
            }
      }, 50);
    }
    // close the custom editor, optionally saving the edits back to the grid
    _closeEditor(saveEdits) {
      if (this._rng) {
            var flexGrid = this._grid, ctl = this._ctl, host = ctl.hostElement;
            // raise grid's cellEditEnding event
            var e = new wjGrid.CellEditEndingEventArgs(flexGrid.cells, this._rng);
            flexGrid.onCellEditEnding(e);
            // save editor value into grid
            if (saveEdits) {
                if (!wjCore.isUndefined(ctl['value'])) {
                  this._grid.setCellData(this._rng.row, this._rng.col, ctl['value']);
                }
                else if (!wjCore.isUndefined(ctl['text'])) {
                  this._grid.setCellData(this._rng.row, this._rng.col, ctl['text']);
                }
                else {
                  throw 'Can\'t get editor value/text...';
                }
                this._grid.invalidate();
            }
            // close editor and remove it from the DOM
            if (ctl instanceof wjInput.DropDown) {
                ctl.isDroppedDown = false;
            }
            host.parentElement.removeChild(host);
            this._rng = null;
            CustomGridEditor._isEditing = false;
            // raise grid's cellEditEnded event
            flexGrid.onCellEditEnded(e);
      }
    }
    // commit row edits, fire row edit end events (TFS 339615)
    _commitRowEdits() {
      var flexGrid = this._grid, ecv = flexGrid.editableCollectionView;
      this._closeEditor(true);
      if (ecv && ecv.currentEditItem) {
            var e = new wjGrid.CellEditEndingEventArgs(flexGrid.cells, flexGrid.selection);
            ecv.commitEdit();
            setTimeout(() => {
                flexGrid.onRowEditEnding(e);
                flexGrid.onRowEditEnded(e);
                flexGrid.invalidate();
            });
      }
    }
}
//
document.readyState === 'complete' ? init() : window.onload = init;
//
function init() {
    //
    // create some random data
    var countries = 'US,Germany,UK,Japan,Italy,Greece'.split(',');
    var products = [
      { id: 0, name: 'Widget', unitPrice: 23.43 },
      { id: 1, name: 'Gadget', unitPrice: 12.33 },
      { id: 2, name: 'Doohickey', unitPrice: 53.07 }
    ];
    var data = [];
    var dt = new Date();
    for (var i = 0; i < 100; i++) {
      data.push({
            id: i,
            date: new Date(dt.getFullYear(), i % 12, 25, i % 24, i % 60, i % 60),
            time: new Date(dt.getFullYear(), i % 12, 25, i % 24, i % 60, i % 60),
            country: countries,
            product: products.name,
            amount: Math.random() * 10000 - 5000,
            discount: Math.random() / 4
      });
    }
    //
    // grid with custom editors
    var theGrid = new wjGrid.FlexGrid('#theGrid', {
      keyActionTab: 'CycleOut',
      autoGenerateColumns: false,
      itemsSource: data,
      columns: [
            { header: 'ID', binding: 'id', width: 40, isReadOnly: true },
            { header: 'Date', binding: 'date', format: 'd' },
            { header: 'Time', binding: 'time', format: 't' },
            { header: 'Country', binding: 'country' },
            { header: 'Product', binding: 'product' },
            { header: 'Amount', binding: 'amount', format: 'n2' }
      ],
    });
    //
    // add custom editors to the grid
    new CustomGridEditor(theGrid, 'date', wjInput.InputDate, {
      format: 'd'
    });
    new CustomGridEditor(theGrid, 'time', wjInput.InputTime, {
      format: 't',
      min: new Date(2000, 1, 1, 7, 0),
      max: new Date(2000, 1, 1, 22, 0),
      step: 30
    });
    new CustomGridEditor(theGrid, 'country', wjInput.ComboBox, {
      itemsSource: countries
    });
    new CustomGridEditor(theGrid, 'amount', wjInput.InputNumber, {
      format: 'n2',
      step: 10
    });
    //
    // create an editor based on a ComboBox
    var multiColumnEditor = new CustomGridEditor(theGrid, 'product', wjInput.ComboBox, {
      headerPath: 'name',
      displayMemberPath: 'name',
      itemsSource: products
    });
    //
    // customize the ComboBox to show multiple columns
    var combo = multiColumnEditor.control;
    combo.listBox.formatItem.addHandler(function (s, e) {
      e.item.innerHTML = '<table><tr>' +
            '<td style="width:30px;text-align:right;padding-right:6px">' + e.data.id + '</td>' +
            '<td style="width:100px;padding-right:6px"><b>' + e.data.name + '</b></td>' +
            '<td style="width:80px;text-align:right;padding-right:6px">' +
            wjCore.Globalize.format(e.data.unitPrice, 'c') +
            '</td>' +
            '</tr></table>';
    });
}
//# sourceMappingURL=CustomGridEditor.js.map


以上代码替换学习指南demo中的app.js,点击运行。
双击国家列可以看到效果。

l2000 发表于 2020-11-19 14:13:46

好的,谢谢

KevinChen 发表于 2020-11-19 20:29:27

不客气,有问题欢迎继续交流
页: [1]
查看完整版本: 同一列下拉框,每行下拉框里的可选项数目不一样