Thank you for reporting this bug. We will make it our priority to review this report.
-
Sencha Premium Member
(Date)Picker doesn't work correctly on a Samsung S5 Mini and Cordova 6.5
Touch version tested:
Browser versions or Packager version tested against:
Device and OS tested against:
- Samsung S5 mini, Modellnumber SM-G800F, Android 6.0.1, WebView 61.0.3163.98.
What theme are you using for your application:
Description:
Steps to reproduce the problem:
- create a fresh new Sencha Touch App with follow command "sencha -sdk D:\test\touch-2.4.2 generate app TestApp . ""
- Then run follow command "call sencha app build package"
- Copy this package to the Asset Folder of the Cordova Project
- Run the Project with the Android Studio on a REAL Samsung S5 mini, NOT in the Simulator.
- Everything is good and working
- No add to the Main.js the PickerField
Code:
Ext.define(''TestApp.view.Main', { extend : 'Ext.tab.Panel',
xtype : 'main',
requires : [
'Ext.TitleBar',
'Ext.Video'
],
config : {
tabBarPosition : 'bottom',
items : [
{
title : 'Welcome',
iconCls : 'home',
styleHtmlContent : true,
scrollable : true,
items : [
{
docked : 'top',
xtype : 'titlebar',
title : 'Welcome to Sencha Touch 2'
},
{
xtype : 'fieldset',
items : [
{
xtype : 'datepickerfield',
label : 'Birthday',
name : 'birthday',
value : new Date()
}
]
}
]
}
]
}
});
- Then run follow command "call sencha app build package"
- Copy this package to the Asset Folder of the Cordova Project
- Run the Project with the Android Studio on a REAL Samsung S5 mini, NOT in the Simulator.
- When the picker is opened, it looks like the screenshots above!
VERY Important Note: I can only reproduce this error with a Samsung S5 Mini and the latest WebView 61.0.3163.98!
The result that was expected:
- The picker should be displayed normally.
The result that occurs instead:
- When the picker is opened, it looks like the screenshots above
-
Sencha Premium Member