Tagged Questions

2
votes
1answer
55 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 { ...
2
votes
2answers
695 views

.NET MVC Ajax Form - How do you hide it?

Ok, everything is 'functionally' working with what I am attempting to accomplish and once again, I am sure this is something dumb, but I cannot figure out how to do this one thing. I have an edit ...
1
vote
1answer
40 views

Asp.net MVC Ajax - Disabling button in ajax.beginform?

I'm using microsoft ajax and ajax.beginform. It's working great for model binding my partial view, but I need to conditionally disable some of the buttons in my form itself depending on what comes ...
1
vote
1answer
286 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
2answers
588 views

Hosted Microsoft Ajax on CDN?

Google hosts popular ajax libraries for free at : http://code.google.com/apis/ajaxlibs/ You get to take advantage of their bandwidth, their CDN and most importantly that users may already have it ...
0
votes
1answer
26 views

Posting collections using partial views and microsoft ajax in ASP.Net MVC2

I am using the partial view with the ajax.beginform. In that partial view page, i have the following markup EDIT <% using (Ajax.BeginForm("ManageDataSources", "DataSources", saveAjaxOptions)) { ...
0
votes
0answers
122 views

MicrosoftAjax.js serialization of date time objects

I've had some problems when sending JSON objects to a WCF method using the MicrosoftAjax.js library. When the object being sent has a date property that is serialized to JSON it appears that the ...