Tagged Questions
0
votes
0answers
3 views
Delay view refresh after completing MVC POST or PUT
Background: I have an MVC4 project that has an API with POST and PUT methods in the controller. The view has access to these via ajax POST and PUT calls. Everything works fine as far as actually ...
2
votes
2answers
8k views
JQuery send JSON to Spring MVC controller
I' not able to send a JSON object with JQuery Ajax to a Spring MVC controller. This is the definition of the method of my controller:
@Controller
@RequestMapping(value = "InboxViewTemplate")
public ...
0
votes
0answers
9 views
Displaying json data in a select with optgroups
I tried to dynamically created dropdownlist with opt groups. Here's my Json, not sure what I did wrong with the jquery? My dropdownlist is not displaying anything but blanks?
I need the dropdownlist ...
0
votes
1answer
17 views
Send path route via ajax call (using fleupload jquery plugin)
What I am trying to accomplish is the following. I want to be able to send a file path (such as "~/MyFolder/MySubFolder") through Ajax to a MVC 4 controller. The problem I'm facing is that, I'm ...
2
votes
1answer
40 views
Ajax Loader gif keep showing on scroll bar down after full records loaded
I am making a MVC web application, in my app I am loading records using Ajax while user scroll down the page but problem is after full records loaded when user scroll down the page again the ajax ...
1
vote
3answers
110 views
MVC Post values using ajax when value selected in dropdownlist
I have several dropdownlists in a form. Each time the user selects a value in one of these dropdownlist do I want the value to be saved to the backend (database). I don't want to page to reload so I ...
0
votes
1answer
41 views
Error while using ajax…in MVC (beginner)
A beginner's dilemma . Shows error in firebug for the values of mobile and country code.
My script File
$(function () {
$('#edit-form').submit(function () {
member = {
...
0
votes
1answer
90 views
ExtJs - How to load json file using extjs with the Ext.Ajax.request method?
I wish to load a json file using extjs. Previously I was loading my json file with the help of jquery library as below:
Ext.define('app.store.Students', {
extend: 'Ext.data.Store',
model: ...
0
votes
2answers
79 views
AJAX call to MVC controller action
I am new to MVC programming.I am working on a simple POC application that displays/edits data from Database.
I have 2 views and 2 controllers. On one of them the JQuery AJAX call to MVC controller ...
0
votes
1answer
71 views
Partial View Submit inside Parent View MVC 3 w/Razor
I have three partial views that I load into a div based on radio button selection using jquery. Everything works fine on the loading and on the forms, however each partial form has a submit ...
1
vote
1answer
21 views
Responding to an AJAX call with only Success or Failure?
I have an MVC Ajax form, and I'm only using it to perform some basic operations.
I'm coding in C#, HTML, Razor, and jQuery.
What I'd like to do is only respond with one of two possibilities, success ...
0
votes
0answers
19 views
Supplying arguments to MVC controller via HTTP?
So I'm somewhat new to MVC but am pretty familiar with C#. I'm in the unique position of needing to create AJAX queries to hit controller functions that I haven't written. These controller functions ...
0
votes
4answers
62 views
My Ajax post is not reaching the success
This is my ajax post:
$.ajax({
type: "POST",
url: "AddUpdateConfigs",
data: ({id: @Model.QueueMonitorConfigurationsID, pathType: $('#ddlConfigTypeName').val(), ...
3
votes
4answers
4k views
System.Linq.Dynamic and DateTime
I am using System.Linq.Dynamic to do custom where clauses from an ajax call in .Net MVC 1.0.
It works fine for strings, int etc but not for DateTime, I get the exception cannot compare String to ...
0
votes
0answers
26 views
how to make ajax call on telerik mvc grid clientside onsave event
I have a telerik mvc grid whose edit mode is incell.
now i want to validate the edited cell value by making an ajax call to the server side and then proceed with the saving or stop the edition by ...