Search

You searched for the word(s): userid:775910

Matching Posts

  • Re: AjaxControlToolkit is undefined when browsing to sample web

    I appologize if I mispoke, CombineScripts=True is the problem; CombineScripts=False is the solution. Still looking to bump of the "popularity" of the bug so it gets assigned to someone and fixed. http://www.codeplex.com/AtlasControlToolkit/WorkItem/View.aspx?WorkItemId=15245 Dan
  • Re: AjaxControlToolkit is undefined when browsing to sample web

    Hey guys, I just noticed that apparently there was never a bug opened on this issue even though lots of us are experiencing it. I have filed a bug; please vote it up as a priority item and add any additional comments you see fit! http://www.codeplex.com/AtlasControlToolkit/WorkItem/View.aspx?WorkItemId=15245
    Posted to ASP.NET AJAX Control Toolkit (Forum) by dguisinger on 2/19/2008
  • Re: $create not initializing all properties

    Found the problem by copying MS's obfusicated code and renaming variables to what they actually are inside Sys.Component.setProperties. It ends up, the code first checks that get_propertyname exists before it checks for set_propertyname exists. This was an initialization-only property used for setting up data that normally gets filled in during a async postback from dataItems. When get_propertyname doesn't exist, it aborts trying to set the property value, even though set_propertyname does
    Posted to ASP.NET AJAX UI (Forum) by dguisinger on 2/11/2008
  • $create not initializing all properties

    I have been pulling my hair out all day. I have a $create call being automatically inserted for a IScriptControl object, and it passes several parameters. One parameter in particular never calls the set method, and there is no error message. Microsoft's name has been intermixed with curses all day long... I use the following code to setup my descriptor: desc0.AddProperty( "viewmode" ,ViewMode.ToString()); desc0.AddProperty( "enable_viewmode" ,EnableViewModeChange); desc0.AddProperty
    Posted to ASP.NET AJAX UI (Forum) by dguisinger on 2/8/2008
  • Re: RegisterPostBackControl not working properly

    I actually just found a solution; it appears to have only been happening on Buttons. LinkButtons and ImageButtons worked fine. After exploring Button, I found that Button.UseSubmitBehavior = false will use the javascript postback, and using that property fixed my problem. I thought I would write this post and let people know as it doesn't seem to be clearly written that using Buttons and AJAX you can have this problem. Dan
    Posted to ASP.NET AJAX UI (Forum) by dguisinger on 1/17/2008
  • Re: UpdatePanel double-encodes HTML entities in page title

    I found a solution. In our code we were doing Page.Title="®" On the page render it was being rendered properly, on post back it was being messed up because & was being encoded as &. So we changed it to Page.Title="(R)" as in the actual register symbol, not (, R, and ) ...and ASP.NET automatically handled the correct translation both during a page view and ajax post back.
    Posted to ASP.NET AJAX UI (Forum) by dguisinger on 1/17/2008
  • Re: How to make DropDownExtender box and arrow always visible

    I think you misunderstood the question. I want the box around the text and the drop down arrow to always be visible, not just when someone mouses over it. The functionality of DropDownExtender is ass backwards.... It only displays the box and arrow when you hover over the text, how is anyone supposed to know that there is functionality there? My current work around was copying all the HTML generated by the DropDownExtender which is displayed during hover and placed it around the ASP.NET label, but
    Posted to ASP.NET AJAX UI (Forum) by dguisinger on 1/17/2008
  • RegisterPostBackControl not working properly

    I have 3 controls within a AJAX enabled page, Prev, Back to Main Page, and Next. These buttons perform server side redirects. I currently call RegisterPostBackControl from within the script manager, I can see it happening during debug. However, when I click on these buttons, they do a partial page postback and I get an AJAX error dialog which occurs when a server side redirect occurs. Can someone please help; all the documentation says this should just work. Everywhere else I have done this it just
    Posted to ASP.NET AJAX UI (Forum) by dguisinger on 1/17/2008
  • Re: UpdatePanel double-encodes HTML entities in page title

    I have a similar issue with ®. Did you ever find a solution?
    Posted to ASP.NET AJAX UI (Forum) by dguisinger on 1/8/2008
  • How to make DropDownExtender box and arrow always visible

    Is there a way to make the DropDownExtender's box always visible? Having a label that you mouse over to see the arrow and box appear is not intuitive AT ALL. No one would ever know just by looking at the page that there is some form of functionality to it.
    Posted to ASP.NET AJAX UI (Forum) by dguisinger on 1/4/2008
Page 1 of 2 (18 items) 1 2 Next >