Tagged Questions

34
votes
12answers
38k views

Equivalent of String.format in JQuery

I'm trying to move some javascript code from MicrosoftAjax to JQuery. I use the javascript equivalents in MicrosoftAjax of the popular .net methods, e.g. String.format(), String.startsWith() .. etc, ...
2
votes
1answer
64 views

In Microsoft Ajax, what exactly does $find do?

I'm so confused as to what $find from Microsoft Ajax actually is. Does it just return a control in a similar manner that the $ operator from jquery or javascript's own getElementById do? If I do ...
2
votes
1answer
2k views

Problem with Ajax.ActionLink AjaxOptions Callbacks (ASP.NET MVC 3)

I have an Ajax.ActionLink inside a PartialView like so: @Ajax.ActionLink(Model.IsVisible ? "Disable" : "Enable", "ToggleVisibility", "Review", new { area = "Admin", id = Model.Id }, new AjaxOptions { ...
1
vote
1answer
325 views

Add Script Reference (JavaScript) to Script Manager on Microsoft AJAX Partial Postback

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. ...
1
vote
1answer
311 views

Error handling with Javascript-enabled WCF?

Is there documentation on how to use the callback functions in a WCF Service that is exposed to Javascript? I'm interested in getting information from the FailureCallback as to why my method isn't ...
1
vote
3answers
2k views

Double loading issue in Javascript / jQuery/Microsoft-ajax hybrid

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 ...
1
vote
1answer
1k views

Javascript error in Firefox when using ASP.NET AJAX Control Toolkit

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 ...
0
votes
1answer
41 views

Formatting a date in javascript till the millisecond

We are using the following js lib from Microsoft https://ajax.aspnetcdn.com/ajax/4.0/1/MicrosoftAjax.js var datetimehigh = new Date(2011,01,12,14,45,55,596); var sDate = ...
0
votes
1answer
26 views

jQuery.unbind deletes wrong handler created using $.proxy

I have JavaScript class: <html> <head> <script src="MicrosoftAjax.js" type="text/javascript"></script> <script src="jquery-1.6.4.min.js" ...
0
votes
2answers
517 views

Javascript Error: n is null in swfobject.js

My Web application renders me "n is null" Javascript error in firefox browser when i try to access a particular page. This error originates in swfobject.js file. Also i get another Javascript error ...
0
votes
1answer
75 views

What does the MS Ajax Framework use location.hash for?

I've noticed that the MS ajax framework touches the action of the default form during Sys.Application.initialize, appending location.hash to it. This is interfering with other code in my app that ...
0
votes
2answers
599 views

Problem with Sys.UI.DataView and javascript

I'm using Microsoft Ajax to dynamically populate a list of contacts, given a json packet. My code is as follows: function fillContactsFromData(contacts) { // this is just for debug to let me ...