Tagged Questions
2
votes
0answers
34 views
Call MVC async action through Ajax, start task, send the ajax response before the task completes?
I have the following scenario:
I have an MVC Async Controller that has an upload action, which processes a csv file and saves the data to the database using nHibernate. This is called using
...
0
votes
2answers
36 views
MVC4 cannot map object properties to JSON from AJAX POST
Model:
public class JsonRequest
{
public string Data { get; set; }
}
Action:
[HttpPost]
public ActionResult Index(JsonRequest data)
{
return new JsonResult()
{
...
0
votes
0answers
21 views
jCarousel load content with ajax
I made a jCarousel on my home page with all the feature products, but if the feature products are 100 in number the home page will load very slowly so I decided I will load the content with ajax, I'm ...
0
votes
2answers
74 views
MVC 4 Controller JsonResult
I have a question related to my controller in MVC.
I want to loop inside my JsonResult GetAfmeldingen using foreach.
But what I do will not go inside my foreach
here is my code as it looks right now
...
0
votes
1answer
38 views
MVC Hover Over Item in View to render View
I have this fiddle here. It demonstrates a hover over and a box appearing with info in it.
What I'm trying to achieve is, when the "View Details" is hovered over, it triggers the MVC action ...
4
votes
2answers
50 views
Controller can return either JSON or HTML depending on the result
Suppose I have a pop-up window that contains a form. I must have a controller that processes the form, and depending on the result, this controller returns either JSON (if all goes well, and popup can ...
8
votes
2answers
58 views
Ajax progress bar with a big list
I have an ajax call that is grabbing a large json list. Is there any way I can make a progress bar that gets the real value of json load (for example a status bar that says 1 out of 200 loaded)?
...
0
votes
1answer
20 views
The resource cannot be found in Ajax function
I'm using C# asp.net mvc.
I wrote a Ajax function in my Home controller - > index.cshtml.
<script type="text/javascript">
$(document).ready(function () {
$.ajax({
...
1
vote
1answer
34 views
Use Action method selector to differentiate between Ajax and non-ajax request instead of relying on if(Request.isAjaxRequest)?
I'm following a book called 'Asp.Net MVC4 in Action'. And now at certain point they say, Instead of relying on if statement within our code to check if the request is Ajax or not, we could use an ...
0
votes
3answers
97 views
knockout.js ajax results in ASP.Net MVC
I have the following controller:
public JsonResult EquipmentSelect(string term)
{
var equipmentSearchViewModel = new EquipmentSearchViewModel
{
EquipmentList = ...
0
votes
0answers
18 views
Uploading a file with ajax in ie 7-10
I have successfully used ajax formdata for file uploading, however It does not work on versions of Internet Explorer lower than 10. Is there any JQuery plugins that support file uploading without ...
0
votes
1answer
35 views
ajax post call to MVC action when i use [Authorize] gives status:200 error
This ajax posts works fine when user is authenticated, but for uanauthenticated user I want to use [Authorize] for redirecting to login.Javascript code look like below...
...
0
votes
1answer
70 views
Ajax post to ASP.net MVC controller - object properties are null
I've got an ajax post being constructed like this:
var myData = [
{
id: "a",
name: "Name 1"
},
{
id: "b",
name: "Name 2"
}
];
$.ajax({
type: ...
1
vote
0answers
62 views
@Ajax.ActionLink( ) doesn't work in some specific HTML tags
In my _Layout file:
<nav>
<ul id="nav">
@Html.LoadAreaMenusByAuth(Ajax)
</ul>
</nav>
<section id="content">
<div id="g12" class="g12">
...
0
votes
1answer
71 views
Make Ajax call before page loads
Before the page loads, I need to run a check on the user's security level. This will determine which elements of our nav bar they are able to see. I have tried two methods at running this ajax call, ...
1
vote
2answers
49 views
Serialized Data using jQuery does not Post to Action method
I have a form which I like to be submitted with jQuery Ajax. My Ajax function is something like following code :
$('#submitForm').click(function (e) {
e.preventDefault();
$.ajax({
...
0
votes
1answer
33 views
How to POST some properties using an AJAX array?
I want to POST my array data through AJAX posting method.
For getting those values in an array, I have used a ViewModel.
My controller code is as::
[HttpPost]
public ActionResult ...
-5
votes
0answers
39 views
How to submit multi dynamic radiobutton lists forms asynchronously on selection change [closed]
i am creating radiobutton lists randomly and dynamically on different part of my page, how can i submit these list asynchronously when someone select any option.i am using asp.net mvc 4 along with ...
0
votes
0answers
21 views
Ajax HTTP request. Adding points to a bing map
I am trying to use a HTTP request to add points to a bing map with data from the seismi Api. However whenever include the apipins function in the views page (MVC) the map does not load.
Also how do ...
0
votes
2answers
27 views
JQGrid filterToolbar is not working
This is the first time i'm working with the JQgrid. I've successfully loaded data to the Grid but my filterToolbar is not working. here is my view
<asp:Content ID="Content1" ...
0
votes
0answers
37 views
ASP.NET MVC + JSON: System.InvalidOperationException
I'm new to asp.net mvc. What's wrong with this code?
public class NewBoxMsg
{
public int x { get; set; }
public int y { get; set; }
}
public ActionResult ...
0
votes
0answers
169 views
Use jQuery inside Ajax call to create and populate drop down list
In my ASP MVC3 index view, there is only one drop down list when the page loads. When the user selects a value from that list, I make an Ajax call to the controller. I then grab the relevant values ...
1
vote
1answer
69 views
Call custom confirm dialog in Ajax.Beginform in MVC3
I want to be able to use a custom jquery dialog or at least be able to change the text of the buttons from OK/Cancel to something else when using the AjaxOptions.Confirm Property in the Ajax.Beginform ...
2
votes
0answers
34 views
Webgrid: URL for Sorting and Filtering
I have a webgrid that is in a partialview. The parial view contains an ajax form which pass data to the webgrid. My view looks like
using (Ajax.Begin("Gain", "Gaining", new ...
0
votes
0answers
50 views
On create view, check if an entry already exist in the database
Let me get you in context, my MVC project creates reservations. A reservation contains zones and equipements (you select which zones and which equipement you want by checking the checkboxes).
When I ...
0
votes
3answers
44 views
jQuery don't post form after preventdefault
I have an form loaded by AJAX, and inside that form I have render the reCaptcha control.
When I post the form, first I validate, and that use my webservice to validate the captcha. If it all data is ...
1
vote
1answer
45 views
Get a reference to the anchor element of an Ajax.ActionLink at the OnSuccess handler
Basically my question is similar or even a duplicate of this one, except that I'm using MVC Razor. And I'm certain that the answers there are outdated since the client library currently used is jQuery ...
0
votes
1answer
80 views
Partial View Ajax Post Without Reloading View
I'm loading a partial view inside a modal via ajax. I then post from the partial view but want to return results to the original page without redirecting to it. I'm having trouble figuring out how ...
0
votes
2answers
53 views
asp mvc ajax call - json parameter received as null
I call a mvc controller using ajax using :
var ajaxOptions = { url: url, type: 'POST', contentType: 'application/json',
data: JSON.stringify(data) };
I send the following ...
0
votes
2answers
50 views
How to pass java script array to Controller action using JQuery?
I hava a javascript array in my Razor view, and I am calling an GET action of controller from my MVC view using $.ajax. What should be the parameter type of the Controller action that will accept the ...
2
votes
3answers
39 views
Passing parameters in ajax call
I'm trying to make an ajax call to the controller method. without parameter it works fine. Once i add the parameter i always receive a null parameter to the cotroller. I think i have correctly done ...
0
votes
0answers
40 views
Div location changed after partial update in MVC using Jquery
I'm trying to learn some asp.net MVC.
I've created an application using Jquery Ajax for partial updates.
When partial updating a section using jquery and showing the section as a modal dialog the ...
0
votes
2answers
67 views
How to load the data without clicking on the link?
I am developing a MVC app.
I am trying to develop a comment box.
I have already written a code , in this code , I have written the process like,
When user click on Show Comment link comments get ...
0
votes
3answers
49 views
javascript does not submit data to handler if using <a>
I am trying to use following script to submit some data to c# handler when user click on a link
<script type="text/javascript">
function myfunc(clicked_id) {
var params = "{'orderid':'" + ...
0
votes
1answer
104 views
ASP.NET MVC4 Ajax.ActionLink replaces entire page
In my view I have:
@section Header {
@Scripts.Render("~/bundles/jqueryval")
}
<div>
<div>@Ajax.ActionLink("Test", "CurrentTime", new AjaxOptions { UpdateTargetId = "some_div", ...
0
votes
1answer
160 views
ASP.Net MVC Async File Upload to API with Kendo fails
So this Kendo UI Upload worked well when I send files to MVC controller, but I have to change it and send the file directly to API controller, but it fails.
This is the Kendo Upload init code:
...
4
votes
1answer
93 views
ASP.NET MVC 4 FileContentResult runs twice
I'm currently trying to view images that are stored in a database as BLOBs, to do that I've created a Controller Action of the type FileContentResult which looks like this:
public FileContentResult ...
0
votes
1answer
42 views
Storing checkboxes state in current session/run
My view including checkbox clickevent listener which should be fired every time a checkbox state had been changed:
<html>
<head>
<script type="text/javascript" ...
0
votes
1answer
111 views
submitting an asp.net MVC 3 form using jquery ajax
I am working on ASP.NET MVC 3 application and I have a jquery dialogue with Ok button. On click of OK I want to submit a form using jquery AJAX.
My ajax call looks like this:
...
4
votes
4answers
126 views
How can I post a list of items in MVC
I have a simple form with a list of items in it and I'd like to post them to the controller but funny thing is I just cant. Everything else goes through properly except the list. I checked the ajax ...
0
votes
1answer
52 views
Use Ajax forms for my requests or consume a RESTful service from a browser that only supports GET and POST methods in mvc4 web api
I am working on mvc4 web api application I am using
@{
AjaxOptions addAjaxOpts = new AjaxOptions {
OnSuccess = "getData",
Url = "/api/reservation"
};
}
...
0
votes
1answer
98 views
Posting JSON to WebAPI - the JSON object includes an image (bytes) - Getting error: An expression is too long or complex to compile
I'll start off saying I'm not very familiar with JSON.
I'm creating a web service that will accept JSON data from an iOS device, and takes that data and inserts it into a database.
The trouble I'm ...
1
vote
2answers
128 views
handle direct url with history api in asp.mvc
I have my site like http://mysite.com/ and on the index page i have search box and for the result i am using jqgrid. When user click row in the jqgrid row I am taking data from cells and do ajax call ...
0
votes
1answer
61 views
JavaScript loop - Ajax image animation asp.net MVC
My application is asp.net MVC, I am using the following script to change Z axis of a 3D image and display the resulted images as animation:
for (var i = 1; i < 202 * sThickness; i++) {
...
0
votes
1answer
53 views
Which dropdown plug in to use in ASP.NET MVC 4?
Following are the requirements of Search panel in my MVC application:
I need three dropdowns (or list boxes) - Countries, States, and
Cities
Multiple selection should be possible in each of these
...
0
votes
3answers
87 views
How to pass an object to controller using ajax call
I want to pass an object to controller and retrieve the values in the controller.
I have defined like:
Html code:
var positionarray = [];
Javascript:
$("#button").live('click',function(){
...
1
vote
1answer
190 views
Submit form not rendering partial view in ASP.NET MVC with Ajax call
My Index controller loads a view with a form that has 3 checkboxes for filtering data in some table. Within the Index view, I have:
<div id="ajax-container">
<div ...
0
votes
1answer
45 views
MVC Ajax Handle Response Correctly
I'm trying implement some Ajax and have run into an issue with how the response is handled and also how to correctly deal with the data.
My JavaScript code is:
$(function () {
...
0
votes
0answers
29 views
ajax-chosen is not working well in MVC
I have used Chosen plugin in my MVC application. The chosen plugin use to work well with my site. However, I have additionally used ajax-chosen to take advantage of ajax capabilities with this ...
0
votes
0answers
22 views
ajax-chosen doesnt work well with selection and styling
I have used Chosen plugin in my MVC application. The chosen plugin use to work well with my site. However, I have additionally used ajax-chosen to take advantage of ajax capabilities with this ...





