I have InlineEditBox that I want to do something specific with. When the editNode is loaded and displayed when the InlineEditBox receives an _onClick event, I want to connect a function in a parent class to the input text box elements onblur event so I can validate if a default value is still set. If so, I want to prevent the blur event and refocus back on the text box.
Testing for the default value and setting focus back are no problem, the problem seems to be the point at which I need to create the connection. The child elements of InlineEditBox that I need to be able to navigate to are not yet instantiated and not available to hookup to a connect event. The path should be
[InlineEditBox ].wrapperWidget.edtiorNode.focusNode
but this is not available by the time I reach the connect statement blow:
var children = me.selector._getChildren();
var label = children[children.length -1].inlineEditorNode;
label._onClick();
me.connect(label.editNode,"onblur",dojo.hitch(me, "isDefaultName",label.get("value")));
So I'm kind of stuck. Is there a way to callback from InlineEditBox once it's child editor has been created? I'm trying not to mess with the dijit class, just the parent classes that call and instantiate it.