simeon
6 Nov 2011, 2:38 PM
Noticed I couldnt' select text in a field on focus of that field. It appears that input.select() doesn't workon mobile phones.
I was able to accomplish it with this block of code
stageTime.on('focus', function () {
stageTime.getInput().input.dom.setSelectionRange(0, 9999);
}, this, { delay: 100 });
It would be nice to add support for text selection onFocus to the Ext.field class by config.
I was able to accomplish it with this block of code
stageTime.on('focus', function () {
stageTime.getInput().input.dom.setSelectionRange(0, 9999);
}, this, { delay: 100 });
It would be nice to add support for text selection onFocus to the Ext.field class by config.