Version 0.8.0 - BREAKING CHANGES

  1. #1

    Version 0.8.0 - BREAKING CHANGES

    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);


    Geoffrey McGill
    Founder
  2. #2

    RE: Version 0.8.0 - BREAKING CHANGES

    The following thread is discussing a few other v0.8 changes, see http://forums.ext.net/showthread.php...14308-7-1.aspx


    Geoffrey McGill
    Founder

Similar Threads

  1. [CLOSED] Breaking Changes minor version 0.8.2
    By ljcorreia in forum 1.x Legacy Premium Help
    Replies: 3
    Last Post: Feb 08, 2010, 10:12 AM

Posting Permissions