2
votes
1answer
22 views

Controller always receive null from json only a specify field

Hy folks! First: I've found these posts before start my question here: questions/11344035 - questions/15939944 - questions/9412449 - questions/9162359 - questions/1551263. Second: none of then ...
0
votes
1answer
14 views

Refresh div data on success method using jquery ajax

I am using jquery ajax. Ajax call is working fine but data inside div is not updating. OnSuccess it gets full page html :( View (MyDataView.cshtml): <div id="userGridDiv"> <a ...
0
votes
0answers
17 views

jquery ajax not working on ActionLink

Ajax is not working, I have tested by adding input button and it works for that but it does not work for ActionLink. I have added jquery bundle on my cshtml. I am using latest jquey version 2.0. This ...
2
votes
2answers
42 views

How to remove model state error for dropdown with selected option label in mvc?

I am working on a MVC project.I have a view having a dropdownlist with an option label "Select Task".Now the integer property bound with this dropdown is not a required field. But then too after I ...
0
votes
1answer
16 views

Received parameter from ajax POST empty in controller + passed parameter in firebug MVC 4

I have looked over the net to figure out what my mistake is. All suggestions I found I tried, without any succes. I access the httppost action in my controller but the parameters stays empty. AJAX ...
1
vote
2answers
50 views

Render HTML from JSON object returned from controller to jquery ajax call

In ASP.NET MVC 4 how can I render HTML on load. I am saving some html string encoded in this form in my sql server database as type nvarchar(max). ...
0
votes
0answers
14 views

Ajax call to controller to change session without pagereload

The application I'm building is a Webapplication that gives the user the possibility to enter new contracts for the upcoming weeks. We use a webservice which returns a JSON file to my ASP.net. Because ...
0
votes
2answers
24 views

Return to index, with selected value (Jquery, ASP.NET)

In my ASP.NET MVC 4 Project, At my index page, I have a dropdownlist where I want to 'redirect' the selected value back to the same index page. I wrote a basic function but I have no clue how I can ...
0
votes
0answers
19 views

mvc 4 jquery autocomplete select does not launch view

I don't understand why my view is not rendering after the user selects an item from a jqueryui autocomplete combobox. The jquery in Index.cshtml is: $("#ItemList").autocomplete({ ...
0
votes
1answer
65 views

MVC 4.5 Async Ajax call not working

I have a slow running action on a controller that I've converted to the new Async method. It now runs much faster, however any jQuery Ajax calls to it return the following string, ...
0
votes
1answer
122 views

MVC 4 Session Timeouts, Ajax polling

I'm looking for a way to prevent the SessionState from refreshing when I make an AJAX post to a controller. This controller returns a JSON true/false object if the SessionState has expired. Public ...
0
votes
2answers
66 views

why if(Request.IsAjaxRequest) is false

I wanted to have a hyperlink which when clicked opens in same page without the complete page being refreshed instead of opening different link. In my controller I have following function public ...
7
votes
5answers
80 views

MVC4 view is not detecting JQuery

I have a @Html.DropDownList which calls a jquery function. But it failed to call the function. I have tried- $(document).ready(function () { $('.test').change(function () { alert("1"); ...
0
votes
2answers
62 views

Date format not maintained in jquery post

In my MVC 4 project developed in VS2010, I have a screen that has a dropdown that shows date as dd-MMM-yyyy for the display text, with the underlying value as dd-mm-yyyy. In the function that posts ...
-1
votes
0answers
59 views

MVC4 model binding not occurring using ajax post

I am having trouble trying to post data to my controller and having the controller bind to the posted model. I have a view model that looks like [DataContract] public class DetailModel { ...
1
vote
1answer
42 views

Why and when to use Ajax services and jQuery in ASP.NET MVC?

May be this sounds very stupid question but I'm a student who just came to know about MVC and I find it very interesting. Also, I have very little or no knowledge about Ajax and jQuery. I have been ...
2
votes
1answer
32 views

How do I get the value of a button to pass back to the server when using JQuery & AJAX?

I am using MVC3, Razor, C#, JQuery and AJAX. I am using an Ajax call to postback a form to the server. I get all the form element values being passed back to the controller in: [HttpPost] ...
0
votes
2answers
47 views

How to parse object (and its elements) from ajax request

Here's my issue. I'm making an ajax request to obtain an object from a controller. The object (or something) is being brought back, but I don't know how to access the attributes of that object being ...
0
votes
0answers
23 views

DOM not getting refreshed

I am using a JQuery dialog which is a partial view (.ASCX ) and in that dialog I am placing a Grid which is again a partial view ( .ASCX). Note: This dialog is common for Add and Edit CRUD ...
0
votes
4answers
53 views

How to return a View to a New/Separate browser window using an AJAX call

jQuery: $.ajax({ type: 'POST', url: redirectToANewWindow, dataType: 'html', data: { filterValue: searchValue }, success: function (result) { ...
1
vote
1answer
59 views

jsTree ajax loading indicator on select node (MVC 4.0)

I have a JStree (well, in fact, 3 trees. Don't say that too fast....) on my page. On this tree, I dynamically load nodes via Ajax, no problem here, the built in indicator works fine. Now, when a node ...
0
votes
0answers
41 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
0answers
51 views

Kendo UI chart inside tabTsrip not showing

I have KendoChart that works fine. I want this chart inside a kendo tabStrip, where the chart is shown in the first tab and in the second tab I want the chart information in table-form. Outside the ...
0
votes
1answer
34 views

how to pass data from View to as an object Controller using ajax?

I have a search ajax request like this: $.ajax({ type: 'POST', data: { FirstName: firstname, LastName: lastname}, contentType: "application/json; charset=utf-8", ...
0
votes
1answer
64 views

Want to Save Posted Json data to database

I am posting JSON data through AJAX POST as :: var length = $('.organizer-media').length; var contents = $('.organizer-media'); var Title; type == ...
0
votes
0answers
93 views

MVC 4 blueImp JQueryUploader multiple file processing error

We are using  blueimp / jQuery-File-Upload for multiple uploads on a ASP.NET MVC 4 Project. We are using the Asynchronous option for file upload. While all files upload properly, we are ...
0
votes
0answers
77 views

JQuery Mobile MVC Ajax call not working

@model DataEntities.NewCustomer @{ ViewBag.Title = "New Customer"; } <h2>New Customer</h2> @using (Html.BeginForm()) { @Html.ValidationSummary() <table width="100%" > ...
1
vote
1answer
75 views

Ajax form in partial view validation

I have a form inside a partial view, it works but in case a server side validation error is raised it displays only the partial view. So I decided to use ajax for the submission (actually it makes ...
1
vote
1answer
212 views

How to retain an injected partial view after page refresh in asp.net mvc

I am using ASP.NET MVC 4 and jQuery. I have a button control on my view. When it is clicked it "injects" a partial view into my view. When I refresh the page then the partial view is gone. My HTML ...
1
vote
1answer
101 views

AJAX POST to MVC Controller showing 302 error

I want to do AJAX POST in my MVC View. I've written the following: Script Code in View $('#media-search').click(function () { var data = { key: $('#search-query').val() }; $.ajax({ ...
0
votes
0answers
109 views

How to use jquery selector for the id of a div in a cshtml page which is in sub folder structure?

My Code: Presentation/Views/Shared/Names/Name.cshtml <script type="text/javascript"> $(document).ready(function () { $('#menu-actions').live("click", function (e) { ...
0
votes
2answers
75 views

Calling two controller methods from script

I am trying to call two methods in my controller. One that starts a conversion and one that returns the percentage of the conversion to the view to update a progressbar. The conversion is started by a ...
0
votes
0answers
25 views

How to display only the Content section alone in the div nameContent instead of displaying both(Top and Content) sections in the div nameContent?

1.cshtml @section Top { @Html.Partial("Top", Model.TopDisplayModel) } @section Content { <div id="nameContent" class="name-content"> <p class="name-placeholder"> ...
-1
votes
1answer
208 views

Error message displaying every time. Using Jquery validator in MVC Project

My Html Code as well as Javascript code is follows. <h2>Register</h2> @using (Html.BeginForm()) { @Html.ValidationSummary(true) <fieldset class="acloginform"> ...
0
votes
1answer
11 views

post array of objects to mvc controller

I'n using ajax post to controller in mvc4, my code controller is : [HttpPost] public JsonResult UpdateAllSettings(int PresetID,List<CustomerAjaxServiceSettingPoco> customerServiceSettings) { ...
0
votes
1answer
439 views

MVC4 - refreshing partial view after deleting object with Ajax.ActionLink acting unexpectedly

I have a DIV (tenant-reference-photos) that holds a partial view that display photos. Beside each photo is a delete button. When it's clicked, I want the photo to be removed from the list and only the ...
0
votes
3answers
85 views

Use Razor in Jquery

I am writing AJAX call which looks as follow: <script type="text/javascript"> $(function () { $.ajax({ ...
1
vote
3answers
462 views

Display JSON Array Data Returned from Controller in Asp.Net MVC

i have an action method in my controller as; public ActionResult IndexWithJson(int Id, int? page) { int pageSize = 2; int pageNumber = (page ?? 1); using (var adsRepo = new ...
0
votes
1answer
79 views

How to keep model state in a MVC4 view…?

I am creating a MVC4 application. In it there is a view in which the user is allowed to create a list of questions. Each question is added one by one. Where i stand now is on addition of every ...
0
votes
0answers
57 views

Weird posting issue with mvc4 and jquery. Some values in controller are returned as null

I am posting a vm back to controller and losing only a couple of property values My VM looks like [DataContract] public class CustomerViewModel { [DataMember] public Guid Id { get; set; } ...
0
votes
1answer
49 views

Return a value using ajax and javascript

Sorry this must be a very simple question. on the following code var myFunction = function (city){ var totaljobs =null; $.ajax({ url: "/EN/taleo/GetTotalJobs", type: 'GET', ...
0
votes
0answers
719 views

JQuery File Upload in partial view

I am following https://github.com/maxpavlov/jQuery-File-Upload.MVC3 to learn AJAX styled file upload in ASP.NET MVC4.I am able to get it running on the view. So , I was trying to make it flexible by ...
0
votes
1answer
427 views

How to properly render the return of AJAX POST MVC 4

I'm using MVC 4 and I am trying to send a post request and I am getting a successful return from my controller with the resulting view in HTML form, but I'm not sure what to do with it at that point. ...
0
votes
1answer
124 views

Ajax Callback for jquery function

I am working on a ASP.NET MVC 4 project, it is some sort of evaluation tool. On my view CoWorkers, i'm filling a datatable with the data requested from the database. In the first column, I display the ...
1
vote
3answers
203 views

jQuery $.post() Method in MVC4

I'm using jQuery $.post() Method to make a call to a method in the controller but it's not hitting that method when this function is called. Anyone know how to work jQuery $.post() Method? function ...
1
vote
2answers
47 views

avoid the db call to reset the values using MVC and Jquery

I am using MVC4 ,jquery,ajax and json,I have task In registration form ,fetch the data already entered the data for editing.I edited the content.Then I click on cancel button ,the form data is reset ...
0
votes
1answer
62 views

Best approach to load a PartialView depending on a drop down (MVC)

Let me explain what is the scenario. In the following image, I've got a dropdown and a div box, the dropdown always have two options, when this is changed should have to load a PartialView in the div ...
0
votes
2answers
259 views

JQuery dialogs don't work after ajax partial view reload

I am manipulating a table of data in a View. When the user clicks on the data name, a dialog pops up to allow him to edit the data. When he clicks, delete, a dialog prompts him to make sure, then ...
1
vote
1answer
69 views

Tabs Jquery 1.9

I updated jquery 1.7 to 1.9 In my old code, I had a function that build my Tabs. After the first tab was selected and showed me the data, I used this: $("mytabs").tabs("select",0); Now, I've ...
6
votes
1answer
393 views

MVC4 - Ajax.ActionLink() GET returning 500 internal server error

I'm getting a 500 internal server error when I click on an Ajax.ActionLink. I have a profile page that's made up of a number of partials. Each partial makes Ajax calls to the server to allow for ...

1 2 3