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, ...
3
votes
1answer
110 views

Is there any real benefit to using the MicrosoftAjax library?

I have been using jQuery for the past couple of years now, and I'm comfortable with it. In every MVC project that I start, the first thing I do is delete the MicrosoftAjax files from the solution. I'm ...
2
votes
1answer
65 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 ...
1
vote
2answers
1k views

Microsoft JScript runtime error: Unable to set value of the property 'control': object is null or undefined

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 ...
1
vote
5answers
417 views

Clicking A tag in IE6 and FF using jQuery

I have a div that is returned from an ajax call which contains an a. I need to click it in javascript, however I cannot find a way that works in both IE6 and FF. This works in FF but generates an ...
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 ...
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
4answers
249 views

Execute JQuery after ASP.Net Microsoft AJAX

I'm trying to execute JQuery after an ASP.Net Microsoft AJAX post back. When a user clicks on a link, Microsoft AJAX is used to update some fields in the DB and if success a label appears informing ...
0
votes
2answers
69 views

Can Microsoft AJAX be used for mobile web

The framework is .NET. Since it has Microsoft AJAX, jQuery baked in, can these be leveraged for the mobile web or would it be better to use a JS mobile library instead?
0
votes
1answer
409 views

JQuery templates or Microsoft DataView?

Greetings, I'm confused about which client-side template engine is recommended by Microsoft. Microsoft announced the release of a jQuery templating engine, while there's another templating engine ...
0
votes
0answers
478 views

Ajax.Beginform : Error: 'id' is null or not an object on form submit

I have a popup where a user is asked to act on something (accept or decline). My goal is that in this case they can have more than one of these pending items, so after they act on one, it refreshes ...
0
votes
1answer
264 views

MicrosoftAjax date.format function not working in Chrome

There is a bug in MicrosoftAjax.js String.format function when using Chrome 5.0.375. The function randomly returns 'undefined' for some dates. I went around that by using jquery date formatter that ...
0
votes
1answer
2k views

Help me re-center a ModalPopup within an iframe when the iframe's parent window scrolls

I have a web page with an iframe in it (I don't like it, but that's the way it has to be). It's not a cross-domain iframe so there's nothing to worry about there. I have written a jQuery extension ...
-1
votes
3answers
61 views

Calling a web Method that returns a non String by AJAX [ASP.net]

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 ...