Page view counter

Unofficial bug/issue list for the Atlas July CTP

Rate It (1)

Last post 11-06-2006 5:06 PM by albertpascual. 37 replies.

Sort Posts:

  • Unofficial bug/issue list for the Atlas July CTP

    07-06-2006, 12:04 PM
    • Loading...
    • Garbin
    • Joined on 09-17-2004, 12:35 PM
    • Sassari, Italy
    • Posts 1,501
    • Points 7,396
    • ASPInsiders
      TrustedFriends-MVPs

    The following is an unofficial list of  the issues signaled by the users of the Atlas forums (except the Atlas Control Toolkit forum). Thanks go to Luis Abreu for helping me to build and maintain the list. If you are aware of a bug/issue not listed here or want to provide a repro for one of them, please add a reply to this thread. Please note that this list has been built for reference and discussion purposes and it's not to be considered an official bug/issue tracker.

    July CTP

    Description Forum Thread Repro Fixed
    1. ASP.NET validation doesn't work (ie, a postback is always performed) if the validators are outside an updatepanel: Go Go No
    2. __doPostBack isn't correctly added to the page during a partial postback(if it's not added correctly during the initial rendering, then it's simply discarded) Go Go No
    3. Javascript button click event oddity in FireFox Go Go No
    4. bug on the code of web part manager (not directly related with ATLAS code, but...) Go Go No
    5. POSSIBLE BUG: asp.net doesn't allways generate a default ID when you don't set one explicitly Go Go No
    6. Sys.Net.WebRequest.createUrl doesn't work properly sometimes Go Go No
    7. Can't select first element of the listview control due to bug of datacontrol class Go Go No
    8. drop method of the datasourcedroptarget doesn't work properly if the target datasource is empty Go Go No
    9. simple scripts defined inside <script> tag aren't correctly interpreted on firefox Go Go No
    10. RequiredFieldValidator should trim the string before checking the lengthand i'd like to add that validation should be performed when the control looses focus and notthe propertychanged event is fired Go Go No
    11. DataSource: getting data from a web service (not data service) Go Go No
    12. Firefox: Webparts and updatepanel Go Go Yes
    13. Returning exceptions from the page Go Go Yes
    14. Update panel is not working if there is OutputCache directives in one of usercontrol in asp.net page Go Go No
    15. Incredible bug on the webpartmanager control Go Go No
    16. DefaultButton in UpdatePanel Go Go No
    17. Special characters in <title /> Go Go No
    18. Number of hidden fields changes during requests Go Go No
    19. AutoComplete Go Go No
    20. UpdateProgress binds to _PageRequestManager (not instantiated) also when EnablePartialRendering=false Go Go No
    21. Breaking change in the way web service's proxy is generated has not been announced nor documented Go Go No
    22. Virtual Earth V3 API breaks UpdatePanel in FireFox. Go Go No
    23. Opera browser is not supported. Go Go No
    24. ScriptManager includes UpdatePanel name in xml script even if this panel is marked as Visible="False". This causes a JavaScript error (Object Not Found). Go Go No
    25. RadioButtonList or CheckBoxList cause full postback when used as trigger for an UpdatePanel. Go Go No
    Alessandro Gallo | Blog | My book: ASP.NET AJAX In Action
  • Re: Unofficial bug/issue list for the Atlas CTP

    07-06-2006, 12:05 PM
    • Loading...
    • Garbin
    • Joined on 09-17-2004, 12:35 PM
    • Sassari, Italy
    • Posts 1,501
    • Points 7,396
    • ASPInsiders
      TrustedFriends-MVPs
    Hi,

    the list is being updated for the June CTP. Anyone is aware of a fixed issue from the list?
    Alessandro Gallo | Blog | My book: ASP.NET AJAX In Action
  • Re: Unofficial bug/issue list for the Atlas CTP

    07-06-2006, 12:49 PM
    • Loading...
    • dj1s
    • Joined on 12-06-2005, 12:40 AM
    • Posts 17
    • Points 82

    My experience:

    • META tags break partial post backs.
    • <xhtmlConformance mode="Legacy"/> is not fully supported (Master Pages -> GridView -> Item Template)

     

  • Re: Unofficial bug/issue list for the Atlas CTP

    07-06-2006, 1:02 PM
    • Loading...
    • Garbin
    • Joined on 09-17-2004, 12:35 PM
    • Sassari, Italy
    • Posts 1,501
    • Points 7,396
    • ASPInsiders
      TrustedFriends-MVPs
    Hi,

    could you point me to any forum thread related to those issues? Thank you.
    Alessandro Gallo | Blog | My book: ASP.NET AJAX In Action
  • Autocompletion bug

    07-06-2006, 1:26 PM
    • Loading...
    • Benton
    • Joined on 06-13-2005, 4:57 PM
    • Posts 73
    • Points 213
    Here's a post with the description of the problem and a sample project that reproduces the error. Acknowledged by Luis Abreu.

    http://forums.asp.net/thread/1281122.aspx

    Regards,

    -Benton
  • Re: Unofficial bug/issue list for the Atlas CTP

    07-08-2006, 5:43 PM
    • Loading...
    • Garbin
    • Joined on 09-17-2004, 12:35 PM
    • Sassari, Italy
    • Posts 1,501
    • Points 7,396
    • ASPInsiders
      TrustedFriends-MVPs
    Hi,

    repro for bug #17:
     
    <%@ Page Language="C#" %>
    
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    
    <script runat="server">
    
    </script>
    
    <html xmlns="http://www.w3.org/1999/xhtml" >
    <head runat="server">
        <%-- Notice the ampersand in the title element --%>
        <title>Untitled & Page</title>
    </head>
    <body>
        <form id="form1" runat="server">
        <atlas:ScriptManager ID="scriptManager" runat="server"
                             EnablePartialRendering="true"></atlas:ScriptManager>
        <div>
            <atlas:UpdatePanel ID="UpdatePanel1" runat="server">
                <ContentTemplate>
                    <asp:Calendar ID="Calendar1" runat="server"></asp:Calendar>
                </ContentTemplate>
            </atlas:UpdatePanel>
        </div>
        </form>
    </body>
    </html>
     
    Alessandro Gallo | Blog | My book: ASP.NET AJAX In Action
  • Re: Unofficial bug/issue list for the Atlas CTP

    07-08-2006, 5:59 PM
    • Loading...
    • Garbin
    • Joined on 09-17-2004, 12:35 PM
    • Sassari, Italy
    • Posts 1,501
    • Points 7,396
    • ASPInsiders
      TrustedFriends-MVPs
    Hi,

    repro for bug #2:
     
    <%@ Page Language="C#" %>
    
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    
    <script runat="server">
        protected void btnSubmit_Click(object sender, EventArgs e)
        {
            // The LinkButton is made visible (i.e. is rendered on the page) but 
            // the __doPostBack script it injects is skipped.
            LinkButton1.Visible = true;
        }
    </script>
    
    <html xmlns="http://www.w3.org/1999/xhtml" >
    <head runat="server">
        <title>Repro</title>
    </head>
    <body>
        <form id="form1" runat="server">
        <atlas:ScriptManager ID="scriptManager" runat="server"
                             EnablePartialRendering="true"></atlas:ScriptManager>
        <div>
            <atlas:UpdatePanel ID="UpdatePanel1" runat="server">
                <Triggers>
                    <atlas:ControlEventTrigger ControlID="btnSubmit" EventName="Click" />
                </Triggers>
                <ContentTemplate>
                    <asp:LinkButton ID="LinkButton1" runat="server"
                                    Text="ClickMe"
                                    Visible="false"></asp:LinkButton>
                </ContentTemplate>
            </atlas:UpdatePanel>
            
            <asp:Button ID="btnSubmit" runat="server" 
                        Text="Submit"
                        OnClick="btnSubmit_Click" 
                        />
        </div>
        </form>
    </body>
    </html>
     
    Alessandro Gallo | Blog | My book: ASP.NET AJAX In Action
  • Re: Unofficial bug/issue list for the Atlas CTP

    07-08-2006, 6:08 PM
    • Loading...
    • Luis Abreu
    • Joined on 02-12-2005, 6:22 AM
    • Madeira [Portugal]
    • Posts 5,368
    • Points 25,660

    hello.

    btw, i'd like to add another bug to the list that several guys have tripped on. the updateprogress server control shouldn't generate its xml blindly. for instance, if you set the enablerendering property of the scriptmanager to false, the updateprogress still creates a binding over the _inPostBack property of the pageRequestManager element; unfortunatelly, this element won't be inserted on the page by the scriptmanager since the property enablepartialrendering is set to false.

    --
    Regards,
    Luis Abreu
    email: labreu_at_gmail.com
    EN blog:http://msmvps.com/blogs/luisabreu
  • Re: Unofficial bug/issue list for the Atlas CTP

    07-08-2006, 6:34 PM
    • Loading...
    • Garbin
    • Joined on 09-17-2004, 12:35 PM
    • Sassari, Italy
    • Posts 1,501
    • Points 7,396
    • ASPInsiders
      TrustedFriends-MVPs
    Hi,

    repro for bug #14:
     
    <%@ Page Language="C#" %>
    <%@ Register TagPrefix="cc" TagName="MyUserControl" Src="~/Atlas_Bugs/MyUserControl.ascx" %>
    
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    
    <script runat="server">
    
    </script>
    
    <html xmlns="http://www.w3.org/1999/xhtml" >
    <head runat="server">
        <title>Untitled Page</title>
    </head>
    <body>
        <form id="form1" runat="server">
        <atlas:ScriptManager ID="scriptManager" runat="server"
                             EnablePartialRendering="true"></atlas:ScriptManager>
        <div>
            <atlas:UpdatePanel ID="UpdatePanel" runat="server">
                <ContentTemplate>
                    <cc:MyUserControl ID="MyUserControl1" runat="server" />
                </ContentTemplate>
            </atlas:UpdatePanel>
        </div>
        </form>
    </body>
    </html>
    
    
    
    
    <%@ Control Language="C#" ClassName="MyUserControl" %>
    <%@ OutputCache Duration="60" VaryByParam="None" %>
    
    <asp:Calendar ID="Calendar1" runat="server"></asp:Calendar>
     
    Alessandro Gallo | Blog | My book: ASP.NET AJAX In Action
  • Re: Unofficial bug/issue list for the Atlas CTP

    07-08-2006, 6:36 PM
    • Loading...
    • Garbin
    • Joined on 09-17-2004, 12:35 PM
    • Sassari, Italy
    • Posts 1,501
    • Points 7,396
    • ASPInsiders
      TrustedFriends-MVPs
    Hi,

    repro for bug #20:
     
    <%@ Page Language="C#" %>
    
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    
    <script runat="server">
    
    </script>
    
    <html xmlns="http://www.w3.org/1999/xhtml" >
    <head runat="server">
        <title>Untitled Page</title>
    </head>
    <body>
        <form id="form1" runat="server">
        <atlas:ScriptManager id="scriptManager" runat="server"></atlas:ScriptManager>
                             
        <atlas:UpdateProgress ID="UpdateProgress1" runat="server">
            <ProgressTemplate>
                <span>Updating...</span>
            </ProgressTemplate>
        </atlas:UpdateProgress>
        
        <div>
        
        </div>
        </form>
    </body>
    </html>
    
     
    Alessandro Gallo | Blog | My book: ASP.NET AJAX In Action
  • Re: Unofficial bug/issue list for the Atlas CTP

    07-08-2006, 7:14 PM
    • Loading...
    • Luis Abreu
    • Joined on 02-12-2005, 6:22 AM
    • Madeira [Portugal]
    • Posts 5,368
    • Points 25,660
    Luis Abreu:

    hello.

    btw, i'd like to add another bug to the list that several guys have tripped on. the updateprogress server control shouldn't generate its xml blindly. for instance, if you set the enablerendering property of the scriptmanager to false, the updateprogress still creates a binding over the _inPostBack property of the pageRequestManager element; unfortunatelly, this element won't be inserted on the page by the scriptmanager since the property enablepartialrendering is set to false.

    doh doh...it's already on the list...damn, this must be related with the 1-3 against Germany :(

    --
    Regards,
    Luis Abreu
    email: labreu_at_gmail.com
    EN blog:http://msmvps.com/blogs/luisabreu
  • Re: Unofficial bug/issue list for the Atlas CTP

    07-09-2006, 4:36 AM
    • Loading...
    • Garbin
    • Joined on 09-17-2004, 12:35 PM
    • Sassari, Italy
    • Posts 1,501
    • Points 7,396
    • ASPInsiders
      TrustedFriends-MVPs
    Hi,

    Luis Abreu:

    doh doh...it's already on the list...damn, this must be related with the 1-3 against Germany :(

    nope, I've added it to the list with a repro as soon as you posted it :)
    Alessandro Gallo | Blog | My book: ASP.NET AJAX In Action
  • Re: Unofficial bug/issue list for the Atlas CTP

    07-09-2006, 11:43 AM
    • Loading...
    • dblock
    • Joined on 12-06-2005, 5:33 PM
    • New York
    • Posts 90
    • Points 363

    Maybe one more bug. I have a control used in .master that has an asp:Hyperlink. It's outside of all update panels. I add script to change the style of the button on click, then continue with the normal postback.

        protected override void OnLoad(EventArgs e)
        {
            StringBuilder sb = new StringBuilder();
            sb.Append("this.attributes['class'].value = '" + CssClassActivated + "';");
            sb.Append(Page.ClientScript.GetPostBackEventReference(this, string.Empty));
            sb.Append(";");
            menuItem.Attributes.Add("onclick", sb.ToString());
            base.OnLoad(e);
        }

    With any Atlas updatepanel on the page the link stops working (postback consumed, no redirect).

    -dB.

    dB. - www.dblock.org / www.foodcandy.com
  • Re: Unofficial bug/issue list for the Atlas CTP

    07-10-2006, 3:06 AM
    • Loading...
    • DomenicDenicola
    • Joined on 06-20-2006, 7:29 AM
    • Pasadena, CA
    • Posts 10
    • Points 37
  • Re: Unofficial bug/issue list for the Atlas CTP

    07-16-2006, 7:00 AM
    • Loading...
    • Luis Abreu
    • Joined on 02-12-2005, 6:22 AM
    • Madeira [Portugal]
    • Posts 5,368
    • Points 25,660

    here's another big mess...has anyone noticed that the new ctp changed the way the web service prooxies are generated? well, if you use the traditional pathx/js, then you're in deep trouble (btw, if you use something like <atlas:ServiceReference Path="path" />, you're also in trouble).

    the problem is that the path to the web service isn't added to the proxy as happened before. so, if you're using the servicereference class, you'll have to set the inlineproxy to true; if you're using html pages, you'll have to add the missing code by hand: namespace.class.path = "path to web service";

    what i'd like to know is why this changed was made (yes, i believe that there must be some reasoning for this to happen)...what i really don't understandis why this wasn't announced on the atlas blogs...i'm starting to get really upset here...i mean, several bugs go unfixed and at least one breaking change is introduced withouth being documented...

    --
    Regards,
    Luis Abreu
    email: labreu_at_gmail.com
    EN blog:http://msmvps.com/blogs/luisabreu
Page 1 of 3 (38 items) 1 2 3 Next >