リッチテキストコントロールの内容を変更しようとしていますが、何も起こりません。 制御は私が作成したメソッド内のテキストを変更しようとEnyo Rich Text Controlのコンテンツを変更するにはどうすればよいですか?
{kind: "RichText", name: "PendingMsg", onchange: "richTextChange"},
次のように定義されます
create: function()
{
// call the default creat then do our stuff
this.inherited(arguments);
// test code to chnage rictch text content
this.$.PendingMsg.value ="New Content";
}
こんにちは、ありがとう、 –