-
24 Nov 2011 4:29 AM #1
[Ext 4.1 PR1] Checkbox focus/blur error
[Ext 4.1 PR1] Checkbox focus/blur error
Why not work blur/focus events on checkbox? And when i focused by JavaScript, blur event not correct running.
OS: Windows 7
Chrome Browser ver. 15.0.874.121 m - error confirm
FF 8 - work ok
Safari 5.1.1 - error confirm
IE9 - ok
PHP Code:Ext.onReady(function(){
Ext.create('Ext.window.Window', {
modal: true,
title: 'Modal Window',
autoShow: true,
width: 200,
height: 120,
items: [{
xtype: 'checkboxfield',
itemId: 'ch1',
boxLabel: 'why checkbox not focus',
listeners: {
focus: function(){
console.info('NOW CLICK CHECKBOX!');
},
blur: function(){
console.info('WHY BLUR?');
}
}
},{
xtype: 'textfield'
},{
xtype: 'button',
text: 'Focus to checkbox',
handler: function(btn){
btn.up('window').down('#ch1').focus();
}
}]
});
});
-
25 Nov 2011 9:22 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 34,121
- Vote Rating
- 453
There is an open bug already for this and the focus/blur events.
Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.
Looks like we can't reproduce the issue or there's a problem in the test case provided.


Reply With Quote