Tagged Questions
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
...
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
703 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
3answers
15 views
Migrated to .NET 4.0 however MicrosoftAjax.debug.js still says version 3.5
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 ...
1
vote
1answer
50 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
314 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
591 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
32 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
130 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 ...
-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 ...