在 Sencha 中显示隐藏的字段集
Show hidden fieldset in Sencha
我已将一个字段集设置为隐藏。
xtype: 'fieldset',
order: 'none',
hidden: true,
hideMode: 'visibility',
id: 'fieldSetAddContact',
margin: '-20 50 0 50',
maxHeight: 110,
maxWidth: 800,
minHeight: 110,
minWidth: 800,
padding: 10,
title: '',
layout: {
type: 'vbox',
align: 'stretch'
}
我喜欢使用此代码将其设置为可见
var addContact = Ext.get('fieldSetAddContact');
addContact.setVisible(true);
这不起作用。如果我将布局类型设置为适合的其他类型,则将显示字段集,但会显示在父元素的左上角,而不是在设置中将元素设置为可见时显示的位置。
有什么想法吗?
根据documentation Ext.get() method doesn't retrieve Components! So I suggest to use Ext.getCmp() method - documentation。
我在 fiddle 上试过了,显示了字段集
我已将一个字段集设置为隐藏。
xtype: 'fieldset',
order: 'none',
hidden: true,
hideMode: 'visibility',
id: 'fieldSetAddContact',
margin: '-20 50 0 50',
maxHeight: 110,
maxWidth: 800,
minHeight: 110,
minWidth: 800,
padding: 10,
title: '',
layout: {
type: 'vbox',
align: 'stretch'
}
我喜欢使用此代码将其设置为可见
var addContact = Ext.get('fieldSetAddContact');
addContact.setVisible(true);
这不起作用。如果我将布局类型设置为适合的其他类型,则将显示字段集,但会显示在父元素的左上角,而不是在设置中将元素设置为可见时显示的位置。
有什么想法吗?
根据documentation Ext.get() method doesn't retrieve Components! So I suggest to use Ext.getCmp() method - documentation。 我在 fiddle 上试过了,显示了字段集