problem about microsoft-ajax-Collection of common programming errors
Buchannon
.net ajax .net-4.0 microsoft-ajax
Recently upgraded the entire project to .NET 4.0 but when I debug javascript (using FireBug or Developer tools for IE9) it says the javascript file MicrosoftAjax.debug.js is still version 3.5 – is this an issue?// Name: MicrosoftAjax.debug.js // Assembly: AjaxControlToolkit // Version: 3.5.40412.0 // FileVersion: 3.5.40412.2 // (c) 2010 CodePlex Foundation
Brett Postin
javascript asp.net google-chrome dom microsoft-ajax
I have a WebForms page which is including MicrosoftAjax.debug.js (4.1.7.123) as a script resource:// Name: MicrosoftAjax.debug.js // Assembly: AjaxControlToolkit // Version: 4.1.7.123 // FileVersion: 4.1.7.0123 // (c) 2010 CodePlex FoundationOn load this script self invokes, eventually calling this function:var attachEvent = !!document.attachEvent;…function listenOnce(target, name, ieName, callback, isReadyState, isScript) {function onEvent() {if (!attachEvent || !isReadyState ||
kastermester
javascript jquery microsoft-ajax
I Have an odd issue with some JavaScript code (again, I hate debugging JS code). I am working on a regular table – which I fill up from a JSON call, and have added in support for some paging (sort of 2x paging I guess you could call it), sorting and some selecting of rows. Everything is working nicely – BUT when a row is DESELECTED (and deselected only) my add_navigate event gets fired twice, which results in a bit of reloading of data that is not needed – and an indication of loading that is ev
Tillito
asp.net javascript firefox ajaxcontroltoolkit microsoft-ajax
I have recently been building a website that utilizes the .NET Framework 3.5 SP1 and the AJAX Control Toolkit. The standard AJAX controls such as UpdatePanel work without problem. As soon as I add a CollapsiblePanelExtender control from the AJAXControlToolkit to the page I receive a Javascript error. (NOTE: this problem occurs on Firefox. IE works without issue.) this.dateTimeFormat is undefinedon the linethis._upperAbbrMonths = this._toUpperArray(this.dateTimeFormat.AbbreviatedMonthNames);i
John Saunders
jquery asp.net ajax asmx microsoft-ajax
i made a web function in the C# file called test it returns a simple List for testing [WebMethod(EnableSession = false)] public static List<string> test() {List<string> a = new List <string>() ; a.Add(“1s”);a.Add(“2s”);return a; }i tried to call this WEBMETHOD from the front end using JQUERY AJAX function Test() {$.ajax({type: “POST”,url: “Default.aspx/test”,data: “”,contentType: “application/json; charset=utf-8”,dataType: “json”,success: function (msg) {x = msg;$(“.resultbox”
TheLukeMcCarthy
javascript .net asp.net asp.net-ajax microsoft-ajax
I am trying to add a script reference to the script manager in the event of a Microsoft AJAX Partial Postback, ie a user clicks on a link in an Update Panel.ScriptManager.RegisterClientScriptInclude(Page, Page.GetType(), “UniqueName”,Page.ResolveUrl(scriptPath));Doesn’t work and either doesScriptReference script = new ScriptReference(scriptPath); MyScriptManager.Scripts.Add(script);From what I have read on the net, RegisterClientScriptInclude should work even in a partial postback. http://www.co
Nahid
jquery asp.net telerik runtime-error microsoft-ajax
I am Developing a web application by using ASP.NET 3.5, jQuery and RadAjax Telerik Control. I get Error Messages when page Loading. that is :”Microsoft JScript runtime error: Unable to set value of the property ‘control’: object is null or undefined” . Image: and when I click to Open RadWindow then get same Error Message. and could not open radwindow. Image 2:How can I solved this Error. Help me..Thanks Nahid
Dan Sorensen
webforms sitefinity microsoft-ajax sitefinity-5
How do I troubleshoot the following error being thrown by a Microsoft AJAX JavaScript framework method? It is an automatically generated line of JavaScript from a custom User Control in a Web Forms App (Sitefinity 5 CMS)Error Message:Unable to get property ‘FancyBlockDesigner’ of undefined or null referenceHere is the JavaScript that is throwing the error:Sys.Application.add_init(function() {$create(SitefinityWebApp.Esd.TheLab.SampleHtmlEditor.FancyBlockDesigner, null, null, {“Editor”:”propertyE
Web site is in building