リッチテキストコントロールのコンテンツを変更しようとしていますが、何も起こりません。コントロールは次のように定義されます
{kind: "RichText", name: "PendingMsg", onchange: "richTextChange"},
createメソッドのテキストを変更しようとしています。
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";
}