このようなもの:
var cp = new ContentPane({
title: self.friends_data.data[index].name,
closable: true,
onClose:function(){
conf = confirm("Do you really want to Close this?");
if (conf){
self.friends_tabs[index] = null;
return true;
}
return false;
},
content: newTabTemplate
});
どこにnewTabTemplate
ある:
<div>
<span data-dojo-type="dijit.layout.AccordionContainer" style="min-width: 1em; min-height: 1em; width: 100%; height: 100%;">
<div data-dojo-type="dijit.layout.ContentPane" title="Write testimonial for friend" doLayout="false">
<div data-dojo-type="dijit.Editor" data-dojo-attach-point="editor" data-dojo-props="onChange:function(){console.log('editor1 onChange handler: ' + arguments[0])}, extraPlugins:['foreColor','hiliteColor','fontName', 'fontSize', 'formatBlock', 'createLink', 'unlink', 'insertImage', {name: 'fullscreen', zIndex: 900}]" height=90% style=""></div>
<!--
dojo.connect(dijit.registry.byNode(editor1.toolbar.containerNode.children[editor1.toolbar.containerNode.children.length-1]), "onChange", function(x){alert('hello')});
-->
</div>
<div data-dojo-type="dijit.layout.ContentPane" title="Read their testimonial for you" doLayout="false">
</div>
</span>
</div>
cp のテンプレートで名前がcp.editor
付けられたアタッチ ポイントがあるので、作業したいと思います。editor
しかし、それは言いundefined
ます。それを回避する方法はありますか?
インスタンス化は正しく行われます。つまり、ビジュアル出力は正しく、アタッチ ポイントのみが機能しません。