Tagged Questions
31
votes
12answers
36k 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
56 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
310 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
287 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
2answers
439 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
70 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
593 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 ...