1. Renamed .Load() Method on PanelBase.cs to .LoadContent(). The original .Load() Method had improperly overrode the native ASP.NET WebControl .Load Event/Method.

    The .loadContent() function was also added to the client-side API.

    All functionality remains unchanged other than the renaming of the Method.

    Related: http://forums.ext.net/showthread.php...1334-16-1.aspx
  2. Renamed client-side API function .clearLoadedContent() to .clearContent().

    Example (Old)

    Panel1.clearLoadedContent();
    Example (New)

    Panel1.clearContent();
  3. Removed the .Disable() and .Enable() Methods from Component.cs, which will affect most controls. The functions were redundant and developers should just continue to set the .Disabled property.

    Example (Old)

    Panel1.Disable();
    Example (New)

    Panel1.Disabled = true;
  4. The ScriptManager.getCurrent() Method has been renamed to ScriptMangaer.getInstance().

    Example (Old)

    ScriptManager.GetCurrent(page);
    Example (New)

    ScriptManager.GetInstance(page);