in

ASP.NET Weblogs

ASP.NET Atlas Announcements

Stay informed about new developments with ASP.NET Atlas

November 2005 - Posts

  • Atlas Wiki released!

    We just released the first preview of the Atlas Wiki on http://atlas.asp.net.   This is the first 'real' Atlas application we've produced for Atlas and it highlights several Atlas features.   This is still a preview, so we're not yet ready to permit users to post a live Wiki - accordingly, the license restricts such use.   However, we welcome you to try it out for yourself and to give us your feedback on the forums.  We hope to release a 'go-live' version sometime in the not-too-distant future.

  • ASP.NET ‘Atlas’ Technology Preview October 2005 release

    The October 2005 (date built) release of Atlas is now available at http://atlas.asp.net.  This new release replaces the Atlas Hands-On-Lab and Atlas Blank Project VSI files.  We plan to release a new build on a roughly monthly schedule (with occasional exceptions). 

    This release aligns the 'Atlas' preview with the Visual Studio 2005 and ASP.NET 2.0 RTM release.  It also contains a set of small changes and fixes based on feedback from the community that are highlighted below.

     

    Release notes for ASP.NET ‘Atlas’ Technology Preview October 2005 release

    Note: you must first remove previous installations of the Atlas VSI before installing the October release.

    Changes

    Safari had a parse error when AtlasCore contained the debugger keyword
    JSON Serialization now supports culture-invariant
    VirtualEarthMap control pushpins work on second bind
    HOL3 completionList <div> corrected
    Added UrlProperty to DataSource.ServiceUrl
    DataServices can be used over SOAP
    Atlas Web Services support nested types
    JSON Serialization supports XmlIncludeAttribute
    z-index works for PopupBehavior
    DropDownList databinding works on Firefox
    Atlas services report errors back to the browser
    Actions that reference target elements declared after them now work
    Server-side events no longer need the <Actions> tag
    Event bubbling to simplify master/details like scenarios
    Timer control works correctly when setting interval and then enabled
    Timer correctly disposes
    HTML elements no longer show through autocomplete text box
    keyCode correctly returned in Mozilla for functional keys like escape
    Checkbox now has onclick event
    Script control can be loaded in design view
    Databind drop down list using server controls
    Popup changed to a behavior:

    Client-side:
                    <control targetElement="popup">
                        <behaviors>
                            <popupBehavior id="popupBehavior" parentElement="hoverLink" positioningMode="BottomLeft"/>
                            <floatingBehavior handle="popup" />
                        </behaviors>
                    </control>

    Server-side:
                    <atlas:Panel runat="server" ID="popup1" CssClass="framed">
                        <Behaviors>
                            <atlas:PopupBehavior ID="popupBehavior" PositioningMode="TopLeft" ParentElementID="hoverLink"/>
                        </Behaviors>
                        <Contents>
                            Some words.
                        </Contents>
                    </atlas:Panel
    >

More Posts