-
28 Jul 2008 11:25 PM #1
Update Panel's Html content
Update Panel's Html content
Hi all,
I need your help for a little thing, if someone can do that...i'll be
. Well the problem is simple, i have a panel in the north of my viewport. The HTML property needs to be updated with some text when user clicks somewhere in the viewport. The problem is that when i use this property :
I can see in firebug that the html property contains the new value, but stills not display it.Code:mypanel.html = 'some text'; mypanel.getUpdater().refresh();
What is the correct update function that i have to use
?
Thank you for your help.
-
28 Jul 2008 11:53 PM #2
Try this:
Code:mypanel.body.update('some text');Aaron Conran
@aconran
Sencha Architect Development Team
-
29 Jul 2008 1:33 AM #3
Thanks
Thanks
Well, so simple... as my question was.
Thanks again.

