ExtJS - 如何最小化行编辑器的高度?
ExtJS - How to minimize the roweditor's height?
因为我附上了屏幕截图,所以我需要最小化 grid
的 roweditor
的高度。
这里是rowediting
插件的配置:
ptype : 'rowediting',
clicksToMoveEditor: 1,
saveBtnText : 'Kaydet',
cancelBtnText : 'İptal',
errorsText : 'Hata',
errorSummary : false,
autoCancel : false
您可以添加 beforeedit 侦听器来为编辑器以及编辑器中的元素分配自定义高度,如下所示:
listeners: {
beforeedit: function (plugin) {
//set height of editor
plugin.editor.setHeight(200);
// set height of each element within editor
plugin.editor.items.each(function (b) {
b.setHeight(100);
})
}
},
工作 fiddle 示例:https://fiddle.sencha.com/#view/editor&fiddle/28d5
因为我附上了屏幕截图,所以我需要最小化 grid
的 roweditor
的高度。
这里是rowediting
插件的配置:
ptype : 'rowediting',
clicksToMoveEditor: 1,
saveBtnText : 'Kaydet',
cancelBtnText : 'İptal',
errorsText : 'Hata',
errorSummary : false,
autoCancel : false
您可以添加 beforeedit 侦听器来为编辑器以及编辑器中的元素分配自定义高度,如下所示:
listeners: {
beforeedit: function (plugin) {
//set height of editor
plugin.editor.setHeight(200);
// set height of each element within editor
plugin.editor.items.each(function (b) {
b.setHeight(100);
})
}
},
工作 fiddle 示例:https://fiddle.sencha.com/#view/editor&fiddle/28d5