Thank you for reporting this bug. We will make it our priority to review this report.
-
Ext User
[OPEN-1275] Ext.form.CompositeField don't show qtip error when msgTarget='qtip'
Im using compositefield, but I'm getting some problems with validation message. When I set msgTarget : 'qtip', message error is not show it.
Is this a bug?
Code:
var form = new Ext.form.FormPanel({
renderTo: 'docbody',
title : 'Composite Fields',
autoHeight: true,
width : 600,
bodyStyle: 'padding: 5px',
defaults: {
anchor: '0'
},
items : [{
xtype : 'textfield',
name : 'email',
fieldLabel: 'Email Address'
}, {
xtype: 'compositefield',
fieldLabel: 'Date Range',
msgTarget : 'qtip',
anchor : '-20',
defaults: {
flex: 1
},
items: [{
xtype : 'datefield',
name : 'startDate',
fieldLabel: 'Start'
},{
xtype : 'datefield',
name : 'endDate',
fieldLabel: 'End'
}
]
}
]
});
-
Sencha User
I am facing similar problem. Is'nt there any solution.
-
Sencha User
Greetings! A lot of time has passed since topic started, but I think it would be helpful to anyone who still gets this error on the ExtJS 3.4.
I've found easy solution: you should set "combineErrors: false" to compositefield's property: http://docs.sencha.com/extjs/3.4.0/#...-combineErrors
After that qtips appears as expected.