When I add a RadEditor to the page through an ajax call(get) it appears on the page but doesn't work properly.
01.$.ajax({02. type: "GET",03. url: "/Showmodule.aspx",04. data: { Mid: "MyList", path: "" },05. cache: false,06. success: function (data) {07. CheckLoginStatus(data);08. $('.contentModule').empty().append(data);09. }10. 11. });
For example I can't resize it or it event can't get focus to edit anything.
Do you have any suggestions on the problem?
thanks in advance.
