Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
6answers
17k views

How do you submit a dropdownlist in asp.net mvc from an Ajax form

How do you submit from a dropdownlist "onchange" event from inside of an ajax form? According to the following question: How do you submit a dropdownlist in asp.net mvc, from inside of an ...
9
votes
2answers
5k views

Asp.Net MVC Ajax.BeginForm is not submitting via Ajax

I've got my form as follows <div id="contact-form" class="hidden" title="Online Request Form"> @Using (Ajax.BeginForm("Contact", "Main", Nothing, ...
4
votes
4answers
3k views

Ajax.BeginForm UpdateTargetId doesn't work with DropDownList

Code: <% using (Ajax.BeginForm("GetResourcesByProject", "CreateRequest", new AjaxOptions { UpdateTargetId = "ResourceListDiv"})) { Response.Write(Html.DropDownList("SelectProject", ...
4
votes
1answer
3k views

Ajax.BeginForm - Displaying Validation Errors

Using the MVC project template in VS2008 (out of the box) I noticed the following: Here is how the Register.aspx form is specified. <% using (Html.BeginForm()) { %> .... Selecting the Register ...
3
votes
1answer
78 views

How can I use inbuilt validation of MVC3 in partial views containing Ajax.beginForm

I have four partial views on my page. And on each partial view I am using AJAX.BeginForm. In each partial view I have one submit button and on click of that button I want to validate the controls of ...
2
votes
1answer
318 views

Return int from MVC Action with Ajax.BeginForm

Whats the simplest way of just returning an int from an Ajax MVC Action call? I am currently trying: public ContentResult Create(MyModel model) { return Content("1"); } using ...
2
votes
2answers
3k views

asp.net mvc Ajax.BeginForm

I'm having some difficulties with Ajax.BeginForm I have something like this in a view <% using (Ajax.BeginForm("ActionName", null , null, new { id = "FormName" })) {%> <input ...
1
vote
1answer
63 views

Create RouteValueDictionary on server and use in aspx?

I am tring to pass a RouteValueDictionary to my aspx so that I can use it as the parameters for an Ajax.BeginForm method. I load it up like so: RouteValues = new ...
1
vote
1answer
646 views

MVC Ajax.BeginForm calling an action that returns JsonResult does not succeed on client

I'm trying to use .Net's Ajax.BeginForm to submit a form and get back a list of objects. @using (Ajax.BeginForm("ValidateEmployee", new AjaxOptions { OnBegin = "onBegin", OnSuccess = "onSucess", ...
1
vote
3answers
422 views

.net Mvc 3 Ajax.BeginForm, get the form element

I'm trying to work with the form dom element with the OnBegin & OnComplete routines of the Ajax.BeginForm helper in Mvc. Currently I have this: @using (Ajax.BeginForm("Contact", "Home", new ...
1
vote
1answer
172 views

Ajax.BeginForm Not Doing What It's Supposed To Do?

I have a dialog box in which there are tabs. In one of the tabs, the addresses entered by the user are displayed. There's also a button which allows the user to add a new address. When the user clicks ...
1
vote
1answer
324 views

Ajax.BeginForm OnSuccess is opening a new window in IE and firefox

I have an ajax.begin form in one of my views. When I add OnSuccess = (javascript function), in chrome and firefix, it opens a new window. All I am doing in the JS function is to remove a text from the ...
1
vote
1answer
1k views

trigger iframe onload event when doing an ajax replacement on content within the iframe

I have a view with a credit card payment form hosted on Domain A. Domain B has a seperate website with an iframe to the credit card form on domain A. The form on domain A uses an ajax form like ...
1
vote
1answer
81 views

ASP.Net MVC Ajax.Beginform giving unexpected results when clicking quickly

I am using ASP.Net MVC ajax.beginform to change the content in a panel, I am also switching some other elements on the page with javascript, if I click quickly between two of the options the ...
1
vote
2answers
764 views

Ajax comments form in ASP.NET MVC2, howto?

I've been playing around with different aspects of MVC for some time now, and I've reached a situation where I'm not sure what would be the best way to solve a problem. I'm hoping that the SO ...
1
vote
2answers
454 views

How do I prevent Ajax.BeginForm from loading a new page?

I have an Ajax form with a single input and a button. On submit, the form should only post the entered value to an action method. My form is correctly posting to the User controller's Log method but ...
0
votes
1answer
84 views

ASP.NET AJAX.BeginForm sends multiple requests

Im relatevely new with Asp.net MVC3, I have a form handled with Ajax, like this: @using (Ajax.BeginForm("dtjson", new AjaxOptions { HttpMethod = "Post", UpdateTargetId = "detalle_tarifa", ...
0
votes
1answer
99 views

AS.Net MVC 3.0 Ajax.BeginForm is redirecting to a Page?

In ASP.Net MVC 3.0 i am using a Ajax.Beginform and hitting a JsonResult on success of the form i am calling a jQuery Function. but for some reason my form is redirecting to JsonAction my View ...
0
votes
0answers
64 views

Ajax.BeginForm not working on other controller views

I have this code to subscribe the newsletter using Ajax.BeginForm @using (Ajax.BeginForm("Newsletter", "Home", new AjaxOptions { UpdateTargetId = "testeAjax", OnComplete = "clearNewsletter" }, new { ...
0
votes
0answers
66 views

Loading bar for Ajax.BeginForm not being hidden

I´m trying to load several widgets on a page dynamically based off which widget is being requested. At the moment the only thing being passed around is the name of the div to be updated. I am using ...
0
votes
1answer
372 views

ASP.net MVC 3 Ajax.beginform update and Client Side validation Problem

I am trying to update the partialview in which i used ajax.beginform. normally, first time it validate on client side but when i refresh the partial view innerHTML using outside button event, it is no ...
0
votes
1answer
60 views

Ajax.BiginForm Causes Postback. I have both the Ajax Scripts included also there are no nested forms

I am trying to use Ajax.BefinForm(), and have tried everything available on net to avoid getting a post back. I just cannot figure out what i have done wrong. Please help me with this. Main View: ...
0
votes
1answer
328 views

Ajax.BeginForm dataType json

Since, Ajax.BeginForm is just a wrapper around jQuery.ajax() call, is there a way to set the dataType property on the underlying ajax() object? In particular I want to set dataType="json" so that it ...
0
votes
2answers
3k views

MVC 3 Ajax.beginform submit - causes full postback

Hi i am trying to get to grips with ajax.beginform using mvc 3. I have 2 forms, a HTML.BeginForm which works fine and a Ajax.BeginForm in a partial view. The post of the ajax form is to add notes to ...
0
votes
2answers
365 views

Ajax.BeginForm OnSuccess not executed after Submit

I am trying to use a jquery dialog to edit data in an WebGrid. Everythings works fine until the Form is submitted, instead of return to the current page that is open the browser goes to the url of the ...
0
votes
1answer
497 views

blockUI error “Object doesn't support this property or method”

I'm running this from within VS2010 and an error comes up when the form is submitted which says "Microsoft JScript runtime error: Object doesn't support this property or method". Any suggestions? ...
0
votes
0answers
108 views

Ajax.BeginForm() Submission Error

Well I am Fresher. I am using Ajax.Begin form to submit my html feilds block which get evaluated completely at runtime. Because the fields containing can be varied at runtime. I am using partial ...
0
votes
2answers
182 views

ajax call inside a function

i have a function which does some task.inside the function i have an ajax call. if the response obtained from ajaxcall is true the function should continue with the rest of the task.else it should ...
0
votes
0answers
460 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
0answers
179 views

Syntax Error using dynamic linq with MVC 2.0's Ajax.BeginForm

Hey Guys, I got some problem with dynamic linq (link) and Ajax.BeginForm. Serverside I got the following Controller Action: [HttpPost] public ActionResult Ajax(String filter) { var count = (from ...
0
votes
1answer
711 views

ajax.beginform onsucess updatetargetid hidden input

I am trying to call a jquery ui dialog by attaching the function to the onsuccess property of the ajaxoptions on a ajax.beginform.. <script type="text/javascript"> // Dialog ...
0
votes
2answers
809 views

Fire post on Ajax.BeginForm with JQuery

I have this MVC form with 2 dropdownlist where selection on the first dropdown should update the second one through an AJAX call. Form looks as follows: <%using (Ajax.BeginForm("GetChildren", ...
0
votes
1answer
397 views

Dynamically Generated Ajax.BeginForm

I have a problem with ASP.NET MVC Ajax forms. I generate several Ajax forms in a table, like this: <% foreach (var item in Model) { var statefulItem = item as ...
0
votes
2answers
2k views

Ajax.BeginForm show loadingElementId when OnBegin return false

Hello I'm having the same problem from this post: http://stackoverflow.com/questions/1164251/ajax-beginform-not-hiding-loading-element-when-onbegin-fails but I have not found how to solve it yet. ...
0
votes
1answer
921 views

Ajax.BeginForm does not work in firefox

When I use Ajax.BeginForm with updateTargetId, it works fine in IE - replacing the html inside updateTargetId's tag. The same thing redirects the page to form's action. Does Ajax.BeginForm work in ...
-1
votes
1answer
159 views

How to use AJAX.BeginForm?

I am developing an ASP.NET MVC 3 application. I want to use AJAX.BeginForm. What are some links to resources/tutorials where this could be studied in detail?