I'm looking for the time spinner control implementation (as it shown on the attached image) based on ExtJS classes. Is there any like this?
Asked
Active
Viewed 247 times
1 Answers
0
while defining parameters use type as numberfield to make the field as spinner.
{
xtype: 'numberfield',
name: 'numberfield1',
fieldLabel: 'Number field',
value: 5,
minValue: 0,
maxValue: 50
}
For visual help. use this link

Narayan Singh
- 1,234
- 2
- 13
- 26
-
a little explanation [or maybe some pseudo-code] will be great. – Sourav Ghosh Dec 01 '14 at 14:25
-
Good, but actually it's just a spinner which works with integers, not time values. – Rom098 Dec 02 '14 at 10:56