Hello!
I've searched for a solution, but nobody seems to have this problem...
The timefield combo appears perfectly, and if I select a field it looks like it's been selected, but when it looses the focus, the selected time dissapears.
Can anybody help me, please?
Thanks!!
Code:
var panel= new Ext.Panel({
title: 'Panel',
layout: 'table',
layoutConfig: {
columns: 4
},
items: [{
layout: 'form',
colspan: 2,
items: [{
width:126,
xtype: 'timefield',
minValue: '07:00',
maxValue: '22:00',
increment: 5,
format:'H:i',
fieldLabel: 'Time',
allowBlank:true,
name: 'time'
}]
}]