Help please !!
I have multiple selectfields on the form. There's no problem with them on the iPad or Computer browser. But if I click on one in the iPhone (the screen darkens as though its getting masked) and then all interaction with it is disabled.
I read that adding the "name" config removes any of the errors occuring but as you can see that's not quite working here.
Help !!!
My Selectfield Code :
Code:
{
xtype: 'fieldset',
title: 'Select',
items: [
{
xtype: 'selectfield',
name : 'defaultVal',
id : 'defaultVal',
label: 'Show For...',
options: [
{text: 'Today', value: 'today'},
{text: 'Last Week', value: 7},
{text: 'Last Two Weeks', value: 14},
{text: 'This Month', value: 30},
{text: 'Last Two Months', value: 60},
{text: 'Last Three Months', value: 90},
{text: 'From...', value: 'custom'}
],
listeners : {
change : function(t, newVal, old, opts){
//This works
}
}
}
},
Thanks & Regards
Sasha172