-
Thanks for replying Nishanthnair! Unfortunately, I tried that too (string[] and then return nameList.ToArray() but that didn't work either. Actually, both worked when I ran the web service directly (instead of from default.aspx). This might help - when I go into debug mode, the web service doesn't...
-
Thanks azmat85, I reinstalled VS2008 and I can now drop&drag the autocompleteextender on the page so that's at least fixed. Unfortunately, the pgm still refuses to run as one would expect. Let me answer your questions. I do believe I have the set the values you listed properly but I'll let...
-
As stated, I can't drag and drop the autocompleteextender control to the page. I can drag&drop other controls with no trouble. In fact, in the designer, the script manager appears fine and the textbox will allow me to add an extender. When I manually type the control details, the page compiles...
Posted to
ASP.NET AJAX Control Toolkit
(Forum)
by
AjaxNeil
on
02-14-2009, 12:00 AM
Filed under: .NET 3.5, ajax asp.net 3.5, Autcomplete, autocomplete, autocomplete extender, AutoCompleteExtender, AutoCompleteExtender Drag Drop
-
Hi I am using VS2008 and Ajax Control Toolkit 3.0.20820.16598. Here is my declaration of a textbox and the extender. < asp:TextBox ID= "tb1" AutoComplete= "off" runat= "server" /> < actk:AutoCompleteExtender ID= "tb1_AutoCompleteExtender" runat= "server"...
-
Hi, I am using Ajax.net autocomplete on a textbox. I have a web service named OccupationList.asmx in my project which is running well while testing separately. I have also added its web reference to my project. It seems like web service is not calling from here. aspx code is like here - < asp : ScriptManager...
-
Here my solution. I hope this could help someone Here the js code (it should be IE6 targetized): function AutoComplete_OnClientShown(sender,args) { if(!iefix)return //ie6 only var oList = sender.get_completionList(); var oSpan = oList.parentNode; var ifr = getChildObj(oSpan,"IFRAME"); if(ifr...
-
Hi, In my page, i have two textboxes and two ajax autocompleteextenders related seperately. When i run the project, autocomplete function for the first textbox works, but seconds does not. I couldn't find where did I wrong? Is there anyone for helping me? Here is aspx.code: < asp : ScriptManager...
-
Here's the sproc and the page markup. I can step through the web service with the debugger to the last statement and the array is correct. 1 ALTER PROCEDURE dbo.TestReports_SelectNumbersByFilters 2 @TestReport_Id int = NULL , 3 @NumberLike varchar (50) = NULL , 4 @debug as bit = 0 5 AS 6 7 DECLARE...
-
I have the below WebService that feeds an AutoCompleteExtender. I've done the same thing many times but am getting unexpected results with this one. Averything is working correctly all the way up to and including the items.ToArray() statement in the web service. It returns the results "30160...
-
I know this is an old post, but hopefully this will help someone.... I used the OnClientShown event to call a javascript function to resize the div container... It seems to work in my case... < asp : TextBox ID ="txtTax" runat ="server" SkinID ="txtSkin" ValidationGroup...