Search

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

Matching Posts

  • Re: AutoCompleteExtender Still Not Working - Ajax Beta 2

    I too have noticed this behavior and, to date, I haven't found a proper fix for it. The only way to properly submit the correct value using the Enter key is to use the mouse to select an item from the AutoComplete list and then to hit the Enter key after that value has been placed into the textbox. However, using the keyboard to scroll down the AutoComplete list and then hitting enter will not submit the correct value. The code I posted submits the form an all the input values in the form elements
    Posted to ASP.NET AJAX UI (Forum) by LucasBaker on 12/18/2006
    Filed under: AutoCompleteExtender
  • AutoCompleteExtender RC Problems

    Hello again. Well, I've just completed an upgrade to the RC release of the Ajax 1.0 Extensions (I also installed the latest Ajax CTP - December and the new AjaxControlToolkit). I made the appropriate changes to my web.config file and also (per the release notes) altered my Auto Complete suggestion web service to reference the System.Web.Script.Services namespace. Unfortunately, it seems to lacking life again. Not sure if I missed a step somewhere along the way or not, but I cannot get the AutoCompleteExtender
    Posted to ASP.NET AJAX UI (Forum) by LucasBaker on 12/14/2006
    Filed under: AutoCompleteExtender Beta Bug CTP/BUG, AutoCompleteExtender
  • Re: AutoCompleteExtender Still Not Working - Ajax Beta 2

    Are you trying to allow the user to arrow down and hit enter to select a word and then hit enter to submit the selected value and perform the form action? If so, you might try adding the following to the textbox control. ASP.NET doesn't always recognize that when you hit the enter key, you want the form to be submitted. txtRequestor.Attributes.Add( "onkeydown" , "if(event.which || event.keyCode){if ((event.which == 13) || (event.keyCode == 13)) {document.getElementById('" + <enter the id of the
    Posted to ASP.NET AJAX UI (Forum) by LucasBaker on 11/15/2006
  • Re: AutoCompleteExtender Still Not Working - Ajax Beta 2

    You may also need to try adding in a <ScriptMethod()> on your WebMethod. I made some slight adjustments to my code in between my initial post and finding a solution. I just realized in reviewing this thread that I hadn't posted my final code so here is the code I have now which is working. In my case, I had to temporarily disable URL rewriting until I found a fix. However, one thing I've noted through this whole experience has been that there are a lot of little "landmines" when migrating from
    Posted to ASP.NET AJAX UI (Forum) by LucasBaker on 11/15/2006
  • Re: AutoCompleteExtender Still Not Working - Ajax Beta 2

    Further update... I've managed to get the web service to work, even with the URL rewrite. I simply added in a check to bypass the URL rewrite if the incoming request was directed at the path of the webservice (i.e. /getsuggestions.asmx/js/GetWordListString). Everything seems to fine now...only took two days.
    Posted to ASP.NET AJAX UI (Forum) by LucasBaker on 11/8/2006
  • Re: AutoCompleteExtender Still Not Working - Ajax Beta 2

    Well, I figured it out! It seems that my web service was not firing because I had setup a URL re-writer for support of search engine friendly URLs in my global.asax file. When I removed this code, the web service works with no problems. So, while this solves the problem of my autocomplete extender not working, now I have to figure out some way (if there is one) of implementing support of search engine friendly URLs without using established method of putting a URL rewrite in on Application_BeginRequest
    Posted to ASP.NET AJAX UI (Forum) by LucasBaker on 11/8/2006
  • Re: AutoCompleteExtender Still Not Working - Ajax Beta 2

    Here is the session and summary information copied from Fiddler: POST /getsuggestions.asmx/js/GetWordListString HTTP/1.1 Accept: */* Accept-Language: en-us Referer: http://test.lucasbaker.net/ Content-Type: application/json UA-CPU: x86 Accept-Encoding: gzip, deflate User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1) Host: test.lucasbaker.net Content-Length: 32 Proxy-Connection: Keep-Alive Pragma: no-cache Cookie: __utma=46060834.814819493
    Posted to ASP.NET AJAX UI (Forum) by LucasBaker on 11/8/2006
  • Re: ERROR after new AJAX install - kinda weird

    I found the same issue, but I'm now running Beta 2 releases of all components (i.e. Ajax Extensions, Ajax Futures CTP, and AjaxControlToolkit). It turned out to be the leftover AjaxControlTool kit file that was causing the error in my case. However, I downloaded the new release and refreshed the dll in my bin directory and everything worked fine.
  • Re: Beta 2 problems - Could not load type 'Microsoft.Web.UI.Design.ExtenderControlDesigner'...

    I had the same issue and ended up having to remove all of my Beta 1 libraries in the bin directory (including the AjaxControlKit.dll file). Once I installed and refreshed the AjaxControlKit.dll file, I stopped receiving the error.
  • AutoCompleteExtender Still Not Working - Ajax Beta 2

    Well, I guess it's my turn to add to the ever-growing list of frustrated developers out there who are struggling with getting the latest revs of the AutoCompleteExtender working in their apps. Before I get into the code, I'll start by saying that I've loaded the most current versions of the Ajax Extensions (Beta), the November Ajax Futures CTP, and the Ajax Control Toolkit (November Release). Up until I loaded the Beta 1 release of the Ajax Extensions, the autocomplete extender was working just fine
    Posted to ASP.NET AJAX UI (Forum) by LucasBaker on 11/7/2006
    Filed under: AutoCompleteExtender
Page 1 of 1 (10 items)