Is there any way to trace blur call on elements in the debugger? I've tried adding nativeBlur logging and set it to debug but nothing shows. I only get the following when I have nativeFocus, traceFocus, and nativeBlur set to Debug:
I am trying to debug where the onblur call is coming from
12:48:08.194:TMR6:WARN:Log:********* SET FOCUS [Button ID:page$$content$nextNoScroll]
12:48:08.202:TMR6:INFO:nativeFocus:page$$content$nextNoScroll:about to call native focus()
Class.getStackTrace(_1=>undef, _2=>undef, _3=>undef, _4=>undef)
Canvas.setFocus(_1=>true, _2=>undef)
Canvas.focus(_1=>undef)
CanvasItem.focusInItem(_1=>undef)
callback()
[c]Class.fireCallback(_1=>callback(), _2=>undef, _3=>Array[0], _4=>[object Window], _5=>true) on [Class Timer]
[c]Timer.$in(_1=>"$ir253")
[Complete stack trace logged via Firebug: FBugTrace15]
12:48:08.202:TMR6:WARN:Log:********* SET FOCUS [Button ID:page$$content$nextNoScroll]
12:48:09.344:BLR9:DEBUG:nativeFocus:onblur fired on: [Button ID:page$$content$nextNoScroll]
I am trying to debug where the onblur call is coming from
12:48:08.194:TMR6:WARN:Log:********* SET FOCUS [Button ID:page$$content$nextNoScroll]
12:48:08.202:TMR6:INFO:nativeFocus:page$$content$nextNoScroll:about to call native focus()
Class.getStackTrace(_1=>undef, _2=>undef, _3=>undef, _4=>undef)
Canvas.setFocus(_1=>true, _2=>undef)
Canvas.focus(_1=>undef)
CanvasItem.focusInItem(_1=>undef)
callback()
[c]Class.fireCallback(_1=>callback(), _2=>undef, _3=>Array[0], _4=>[object Window], _5=>true) on [Class Timer]
[c]Timer.$in(_1=>"$ir253")
[Complete stack trace logged via Firebug: FBugTrace15]
12:48:08.202:TMR6:WARN:Log:********* SET FOCUS [Button ID:page$$content$nextNoScroll]
12:48:09.344:BLR9:DEBUG:nativeFocus:onblur fired on: [Button ID:page$$content$nextNoScroll]
Comment