I have a panel like http://jsfiddle.net/7kKVc/
I try to move displayfield
like below
I try hideLabel: true,
but that's wrong :(
How to make that thanks
I have a panel like http://jsfiddle.net/7kKVc/
I try to move displayfield
like below
I try hideLabel: true,
but that's wrong :(
How to make that thanks
尝试这个:
var filterPanel = Ext.create('Ext.panel.Panel', {
bodyPadding: 5, // Don't want content to crunch against the borders
width: 300,
title: 'Filters',
items: [{
xtype: 'datefield',
fieldLabel: 'Start date'
}, {
hideEmptyLabel: false,
xtype: 'displayfield',
value: 'Limit: my value'
}],
renderTo: Ext.getBody()
});