Search

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

Matching Posts

  • Re: alwaysvisible control doesn't work with IE7.0

    I have resolved this issue: In the AjaxControlToolkit source, AlwaysVisibleControlBehavior.js, Line 98: this._animate = (Sys.Browser.agent == Sys.Browser.InternetExplorer && Sys.Browser.version < 7); changed to: this ._animate = true ; //(Sys.Browser.agent == Sys.Browser.InternetExplorer && Sys.Browser.version < 7); and it works... Have fun!
    Posted to ASP.NET AJAX Control Toolkit (Forum) by Gobannos on 4/29/2007
  • Re: Selecting a Node of treeview In update panel

    Hi there I recently faced the same problem and fixed it like this: Protected Sub MyTreeview_PreRender( ByVal sender As Object , ByVal e As System.EventArgs) Handles MyTreeview.PreRender If Not ViewState.Item( "SelectedNode" ) Is Nothing Then Dim _Node As TreeNode = Me .MyTreeview.FindNode(ViewState.Item( "SelectedNode" )) If _Node IsNot Nothing Then If _Node.Parent IsNot Nothing Then _Node.Parent.Expand() End If _Node. Select () End If End If End Sub Protected Sub MyTreeview_SelectedNodeChanged(
  • Re: Issue with UpdateProgress on ASP.NET AJAX Extensions RC

    Luis Abreu: And why not put the updateprogress on the content pages where it makes sense? That's exactly what i wanted to mention: why not put a ContentPlaceHolder in the MasterPage and put an UpdateProgress in there only if the Contentpage contains a UpdatePanel? I do believe that this behaviour is not a bug. Have fun!
  • Re: Error on ajax.asp.net - sys is undefined (PLEASE HELP ME!) -> possible solution.

    Hi Everyone Today, i was just running into the same problems as described above ('sys is undefined'). I've tried all the solutions mentioned here and on other Websites/Blogs, but nothing helped. Luckily, i figured out how to make my site working with the current AJAX framework. This is what i did (AJAX RC 1.0): 1. I am NOT using the solutions mentioned here 2. I am using the original Web.config delivered with the AJAX framework as a base Web.config 3. I went to the Control Panel of my shared webhost
Page 1 of 1 (4 items)