Thank you for reporting this bug. We will make it our priority to review this report.
-
Sencha User
DatePickerField does not work on 6.6.0+
The date picker does not open. See official Kitchen Sink:
https://examples.sencha.com/ExtReact...atepickerfield
Code:
ext.js:1 Uncaught TypeError: Cannot read property 'addCls' of null
at constructor.initialize (ext.js:1)
at constructor (ext.js:1)
at constructor.callParent (ext.js:1)
at constructor (ext.js:1)
at new constructor (ext.js:1)
at eval (eval at getInstantiator (ext.js:1), <anonymous>:3:8)
at Object.create (ext.js:1)
at constructor.applyPicker (ext.js:1)
at constructor.callParent (ext.js:1)
at constructor.applyPicker (ext.js:1)
Code:
ext.js:1 Uncaught TypeError: Cannot read property 'show' of undefined
at constructor.showPicker (ext.js:1)
at constructor.expand (ext.js:1)
at constructor.onExpandTap (ext.js:1)
at Object.callback (ext.js:1)
at constructor.onClick (ext.js:1)
at constructor.fire (ext.js:1)
at constructor.fire (ext.js:1)
at constructor.publish (ext.js:1)
at constructor.publishDelegatedDomEvent (ext.js:1)
at constructor.doDelegatedEvent (ext.js:1)
-
Sencha - Forum Administrator
Thanks for bringing this to our attention. I have shared it with support and they will follow up.
Michele
-
Sencha Premium User
the root cause is you're in timezone with DST. the issue is "ExtDate.add(monthStart, ExtDate.DAY, startOffset);" in DateView.js. you could update it into ExtDate.add(monthStart, ExtDate.DAY, startOffset, true); by overriding refresh function within DateView.js. true arg is to bypass DST
-
Sencha Premium User
Thank you bpick88 for saving the world

Originally Posted by
bpick88
the root cause is you're in timezone with DST. the issue is "ExtDate.add(monthStart, ExtDate.DAY, startOffset);" in DateView.js. you could update it into ExtDate.add(monthStart, ExtDate.DAY, startOffset, true); by overriding refresh function within DateView.js. true arg is to bypass DST
Thank pro. Sencha should be sent for you a ticket massage
-
Sencha User
How did you managed to start an app with sencha 6.6.0?