Cellediting textarea应该与它的网格重叠

时间:2017-09-27 09:53:46

标签: extjs

我的cellediting网格有一个文本字段,编辑器指定为textareafield。

editor: {
  xtype: 'textareafield',
  height: 300,
  enableKeyEvents: true,
  selectOnFocus: true,
  flex: 1,
  listeners: {
    specialkey: function (field, e) {
      specialKeyFunction(field, e);
    },
    afterrender: function (field, e) {
      field.bodyEl.setWidth(200);
    }
  }
}

请参阅: https://fiddle.sencha.com/#fiddle/27ee&view/editor

现在由于在相对定位的父母中存在绝对定位的textarea,你几乎看不到textarea。

我希望textarea编辑器的行为类似于datepicker或类似于组合框绑定列表。意味着编辑器应该添加到正文中,但仍然附加到它所属的单元格中。

0 个答案:

没有答案