Ext.Net.Component.Update C# (CSharp) Method

Update() private method

private Update ( string html ) : void
html string
return void
        public virtual void Update(string html)
        {
            string template = "if({0}.rendered){{{0}.update({1});}}else{{{0}.html={1};}}";
            this.AddScript(template, this.ClientID, JSON.Serialize(html));
        }

Same methods

Component::Update ( string html, bool loadScripts ) : void
Component::Update ( string html, bool loadScripts, JFunction callback ) : void
Component::Update ( string html, bool loadScripts, string callback ) : void