アコーディオンで選択した子の値を取得できないのはなぜですか。使用したコードは以下のとおりです
function Alert1()
{
alert((dijit.byId("markup").selectedChildWidget.id).get('value'));
}
<div data-dojo-type="dijit/Editor" id="editor1" data-dojo-props="onChange:function(){console.log('editor1 onChange handler: ' + arguments[0])}">
<p>This instance is created from a div directly with default toolbar and plugins</p>
</div>
<button onclick="Alert1();">Answer</button>
</div>