The asp.net-mvc-ajax tag has no wiki summary.
0
votes
0answers
7 views
Passing model data from View to controller using Ajax
Below is my jquery method which is called to validate the data entered in the form and then pass the control to controller, I have two issues.
1. Validator is validating whatever i enter or dnt enter, ...
0
votes
1answer
124 views
AJAX XSS attacks and .Net MVC
This post describes a tokening system for all JSON HttpGet and HttpPost AJAX calls:
In short, you use the AntiForgeryToken attribute to create a token on the page, and then manually validate that ...
2
votes
2answers
198 views
MVC 4 - Ajax - Replace one partial one view with another
I'm trying to replace the contents of a div in a Main view with partial views depending on which @Ajax.ActionLink is clicked.
Initally I load the _CaseLoad partial view then I would like to be able ...
0
votes
0answers
546 views
how to change one field in kendo grid with custom command and save it to db and reload gird with curents change
im useing kendo grid in my project,i need to manage custom command for chage one field in record , (it change a bool column---> change usertype as true [for grant and revoke some role] Referee or not ...
2
votes
1answer
312 views
500 Internal Error in ASP.NET MVC Ajax
I'm using Visual Studio 2010 and MVC 4 for my web application. This is my controller code:
public ActionResult MyController()
{
if (Request.IsAjaxRequest())
{
...
0
votes
1answer
90 views
Asp.net MVC AJAX - How to access data by using AJAX?
Case: My application contains following modules
Clients
projects
Business Contact etc
Code of Clients Module
using System;
using System.Collections.Generic;
using ...
0
votes
1answer
230 views
ViewModel not storing values when Ajax.ActionLink calling controller
When I'm clicking ActionLink and setting ViewModel values in controller I can see changes when View being rendered. But same values comes as null into Controller when I'm clicking ActionLink second ...
0
votes
3answers
248 views
Contact Form Within Partial View
I have to admit, the transition from Web Forms to MVC is literally blowing my mind. I simply can not seem to wrap my head around how MVC functions as it compares to Web Forms, and I continue to hit ...
1
vote
1answer
153 views
ajax.actionlink post form not showing ckeditor
After Using the Ajax.ActionLink As
@Ajax.ActionLink("Edit", "AddEdit", new { @id = id, @recId = item.EncyclopediaID }, new AjaxOptions { InsertionMode = InsertionMode.Replace, UpdateTargetId = ...
1
vote
1answer
614 views
“Microsoft JScript runtime error: 'Sys' is undefined” on Jquery dialog that renders “Log on partialview”
I am new in jquery, ajax and mvc.
i used Jquery dialog to show a log on partial view. when it is loaded and i click in its textbox or any other place on it, i get this error:
"Microsoft JScript ...
1
vote
2answers
162 views
How to block targetUpdateId using Blockui using ajax.actionLink or ajax.beginForm
I want to develop an ajax pipeline such that whenever there is any ajax request made through ajax.beginform or ajax.actionLink it should start with my ajax.start function in which i can be able to ...
0
votes
1answer
173 views
jquery mvc modal button to access post action
I have this modal dialog popup where there's 2 buttons. One is a cancel, and the other is accept. I want the accept button to call a POST Action.
$(document).ready(function () {
...
0
votes
0answers
130 views
why function onSuccess in Ajax.BeginForm executes 2 times?
I want to ask about onSuccess function. I have this:
function onSuccess2() {
var formId = $('form.PersonalClass').attr('id');
if (formId == 'PersonalData') {
...
0
votes
1answer
1k views
Updating div content after submiting ajax form in asp.net MVC3
<div id="myDiv">
<ul class="purpose">
@{
var purpose = CommonMethod.getPurpose("");
for(int i=0;i<10 && i<purpose.Count();i++)
{
...
0
votes
1answer
188 views
The error of can not find View in Ajax form
I ask a similar question here
So I add Some OnComplete Functions and Id to Ajax Forms, And there is:
This is My View:
@foreach(var item in Model) {
<tr id="TR@(item.Id)">
...
1
vote
1answer
235 views
AjaxForm in result of AjaxForm
This is My View:
@foreach(var item in Model) {
<tr id="TR@(item.Id)">
@{Html.RenderPartial("_PhoneRow", item);}
</tr>
}
_PhoneRow:
@model PhoneModel
...
0
votes
1answer
530 views
Ajax.BeginForm with UpdateTarget Inside AjaxForm
Is this possible to use Ajax.Beginform with update target inside of ajax form. like this:
using(Ajax.BeginForm("EditPhone", new { id = item.Id.Value }, new AjaxOptions {
UpdateTargetId = ...
-2
votes
1answer
207 views
AJAX not working on MVC Page
I am using MVC3 with Razor. I have one Action which want to load using AJAX. I am using jqeury UIblock plugin http://jquery.malsup.com/block/# to show some wait image to user.
The View corresponding ...
4
votes
2answers
423 views
Ajax.BeginForm check if request was redirected
How to determine if async request form ajax form was redirected?
In my case request is redirected to login page if user's session is closed.
I tried to check arguments of OnComplete, OnSuccess and ...
1
vote
2answers
264 views
Javascript function to open a file not getting called
i am having problem in calling javascript function
I want to open a file on click of a link.
Here is my code:
<script language="javascript" type="text/javascript">
var refViewer = null;
...
0
votes
2answers
544 views
ASP MVC 3 ajax with json model binding to complex class
I have got following class hierarchy in my ASP MVC 3 project. Some entry can have containers, and that containers can have some content inside. Container and content classes are abstract classes.
I ...
2
votes
2answers
1k views
How to call partial view through ajax in mvc3
I need to call a partial view through ajax. I have tried the following, but I am not sure how to complete it.
$("#UserName").change(function () {
var userid = $("#UserName").val();
...
0
votes
2answers
3k views
How to call a partial view through ajax in MVC3
I am developing an application in MVC3
I need to show a partail view on click of a dropdown
For that i wrote an ajax,
$("#UserName").change(function () {
var userid = $("#UserName").val();
...
1
vote
0answers
76 views
Ajax.BeginForm is rendering with differently in HTML
@using (Ajax.BeginForm("RespondToFollowRequest", ajaxOptions))
{
<input type="hidden" name="followerID" value="@Model.MemberIdSentFrom" />
<div>
<input class="Acceptbutton" ...
0
votes
1answer
674 views
Ajax to assign src to Iframe Dynamically in MVC3
Hi i am basically new to Ajax and having a tough time writing it..
I want to assign src value to Iframe which is fetched from the database
Table is HobbyMasters
HobbyName
HobbyUrl
I write a ...
0
votes
2answers
636 views
To load an Iframe dynamically on click of a link in MVC3
Hi i am developing an application inMVc3
I have a model containing
Hobbyname
Hobbyurl
I have drawn a table and in the first column i fetch all the hobbynames and display it as a link.
Hobbyurl ...
1
vote
1answer
858 views
MVC 3 Telerik Grid Won't Return Timestamp to View Model
Update: I haven't figured anything out yet. It sure seems like it ought to work the way it is.
I have a telerik grid that I have bound to a View Model. The grid basically displays name and type of ...
1
vote
1answer
1k views
Ajax Partial View - Updates entire page
EDIT:
I see why it doesn't run twice. I have the "Ajax.BeginForm()" call inside the div that is being wiped out. I moved that to the Partial View. Now it works great in Internet Explorer, but not ...
1
vote
1answer
265 views
Ajax.BeginForm doesnt work when deployed to WebServer
Ive the following view definition in my asp.net mvc website:
<% Using Ajax.BeginForm("UsrCtlChangePassword", "User", Nothing, New AjaxOptions With {.UpdateTargetId = "resultDiv", .InsertionMode = ...
1
vote
1answer
2k views
MVC - Ajax.BeginForm does not working
I am using Ajax Form to render partial view in the page.
see below code
<script type="text/javascript" src="<%: Url.Content("~/Scripts/jquery-1.7.1.min.js") %>"></script>
...
0
votes
1answer
273 views
CAn i Call a MVC POST controller method in jquery
For some time I am worknig in MVC, I learnt from this post,
http://evolpin.wordpress.com/2011/04/12/asp-net-mvc-partialview-with-ajax/#comment-435
that to load a usercontrol using AJAX, ww can use ...
0
votes
1answer
416 views
MVC Ajax action Link copies itself and appends, how do i fix
I am using ordered list design to to make my twitter app to view the tweets. Every Time I call the ajax insert, it puts puts another copy of the ajax link on the page . I am just trying to get the ...
1
vote
0answers
551 views
Ajax.BeginForm OnFailure Never Gets Called
I am using Ajax.BeginForm in my View, and providing an OnFailure handler in my .js, but it never gets called. I've tried throwing an exception (throw new HttpException(500, "Internal Error")) in my ...
1
vote
1answer
2k views
use @Ajax.ActionLink to popup a form
i want to use @Ajax.ActionLink to popup a form so i did this in my cshtml page :
@Ajax.ActionLink("click ", "AddToMembers", new AjaxOptions { HttpMethod = "GET", UpdateTargetId = "result", ...
3
votes
2answers
4k views
using ajax with dropdownlist mvc3 [closed]
Is there any way to refresh some part of page (e.g div/span) on selection of dropdownlist option ... ?? Please note I'm using razor syntax.
If yes, then please give some sample code.
0
votes
1answer
223 views
mvc2 with ajax table enabling back button [closed]
I have created my application that has search form and below contains results for the search.
Now i want to be able to add history, button back functionality.
The problem is i am caught in infinitive ...
1
vote
0answers
182 views
Update more than one view in a MVC3 ajax ActionResult
I'm approaching to mvc3 developing but I'm not sure if what I want to do is the correct way to proceed...
Let's say I have a CONTACTLIST where i show some contacts and in a right tablecolumn i have ...
6
votes
2answers
234 views
Is there a good explanation on what ASP.NET MVC3 is doing with its ajax helpers and rendering unobtrusive javascript?
I'm trying to look for good (in-depth) explanation on what happens when you use MVC ajax helpers. What events and css classes get added. I can find sprinkle of info here and there but no overall ...
1
vote
1answer
308 views
ASP.NET MVC 3 DateTime incorrect parsing on Ajax form submitting
I have textbox on my Ajax form which contains date-time formatted string in date format like 'dd.MM.yyyy', for example '21.11.2011'.
When submitting form to controller action accept null in DateTime? ...
2
votes
2answers
2k views
Add a css class for Ajax Action link
How I can add a class for Ajax.ActionLink?
@Ajax.ActionLink("Remove this photo","RemovePhoto","Admin",new{Id=Model.filename, @class="ActionClass"},new AjaxOptions{OnSuccess = "RemoveSuccess"})
but ...
0
votes
1answer
238 views
Is it possible to pass a generic model to a JsonResult action from an ajax call?
I'm creating a javascript function that will invoke ajax call to validate the model of a form.
function ValidateModel(formID) {
$.ajax({
url: '/Custom/ValidateModel',
type: ...
2
votes
1answer
3k views
MVC 3 Ajax.ActionLink Pass Parent Model Property
I have a view which displays a model eg:
public class MyModel()
{
public string name {get;set;}
public IList<Note> notes {get;set;}
}
The view displays all the notes for the model, i am ...
0
votes
1answer
68 views
Preventing Execution on Child and Ajax Requests
we are using asp.net mvc-3 for our application. we populate a property of controller from db on initialize method of controller. i don't want this code to be executed on partial requests and ajax ...
5
votes
1answer
7k views
Why UnobtrusiveJavaScriptEnabled = true disable my ajax to work?
I was doing a sample using MVC3 razor, and wrote this:
<p>
Show me the time in:
@Ajax.ActionLink("UTC", "GetTime", new { zone = "utc" }, new AjaxOptions { UpdateTargetId = "myResults" ...
2
votes
2answers
3k views
asp.net mvc ajax post - redirecttoaction not working
I used the following code in one of my controller;
if (Request.IsAjaxRequest()) {
return RedirectToAction("PreviewAndSendEmail");
}
I debugged it and it comes to ...
1
vote
2answers
946 views
jquery.validate lost on ajax replacement and only showing last error
I am using jquery.validate in MVC 2 with MicrosoftMvcJQueryValidation. I have data annotations on my model which is then being translated into jquery validators. I am using a modification to ...
1
vote
0answers
1k views
Grouping not working with ajaxically loaded telerik MVC Grid
i m using telerik extensions for .net mvc. in grid everything is working fine until i try to group the grid control based on some columns. actually my grid is not server bound (even it loads the grid ...
0
votes
1answer
181 views
Showing both MVC Ajax calls and jQuery Ajax calls with one indicator
I have a web application that utilises both the MVC Ajax calls:
Html.ActionLink() rendering as Sys.Mvc.AsyncForm.handleClick( in the page source
and: jQuery Ajax calls, eg:
$.post()
Now I can ...
0
votes
2answers
67 views
asp.net mvc ajax
I'm using the dropdownlist html helper and would like to perform an ajax call to the server when the value changes. I have seen the jquery code dropdownlist.change...
The problem I have is that I ...
2
votes
2answers
1k views
how to update specific div data through ajax in asp.net mvc
how to update specific div data through ajax in asp.net mvc