stever
4 Feb 2010, 2:33 PM
Easy to show in a test:
new Ext.ux.SelectBox({
renderTo:Ext.getBody(),
store:[['test','Test'],['other','Other']],
listeners:{
select:function(i,r,v){console.log('hello ',v)}
}
})
Make a selection and you get two lines:
hello 0
hello 0
When you expect only one...
new Ext.ux.SelectBox({
renderTo:Ext.getBody(),
store:[['test','Test'],['other','Other']],
listeners:{
select:function(i,r,v){console.log('hello ',v)}
}
})
Make a selection and you get two lines:
hello 0
hello 0
When you expect only one...