Tagged Questions
0
votes
1answer
20 views
How to get selected checkbox values in controller from formcollection?
I am passing a form collection object to one of my controller via ajax like this.
var formCollection = $(':input');
$.ajax({
url: url,
type: 'POST',
...
0
votes
0answers
20 views
Ajax scroll bar down keep firing ajax request after full records loaded
I am using this code to load ajax content in my MVC3 app, but problem is when I scroll down and it loads all pages, then ajax request fire again for two times to load the records. I have set a message ...
-2
votes
0answers
14 views
Asp.Net Mvc 3 Jquery Dialog FileUpload Plugin [on hold]
I am trying to do the following, from a view I am calling a jquery dialog that opens a form , and one of the fields must be a file upload... I want to implement that fileupload plugin to work with the ...
1
vote
1answer
23 views
update field if change
I have a controller with typical views (Index, Create, Edit, Delete). In index I show a list of object attributes.
I.E. Books
===============================
ID || Title || Author || % Read
...
0
votes
2answers
28 views
Dynamically add values of Editors in cshtml - mvc3
I am using mvc3 asp.net and I have views in my project. In one of the view, I have fields like baseprice, etc.. And there is another total field as well. Is it feasible (through AJAX) to dynamically ...
0
votes
1answer
28 views
QuickSearch never be called
this is my code in .cshtml
@using (Ajax.BeginForm("Search","Home",
new AjaxOptions
{
UpdateTargetId = "SearchResults",
HttpMethod ="GET",
InsertionMode = ...
-1
votes
1answer
35 views
how to update div value in mvc 3 without disturbing any other UI values?
I am using MVC3 with vb.net. I want to update the div value on button click. I know this can do by ajax call to action. but do i need to use partial view for that ? please show me example hint ...
0
votes
1answer
43 views
jquery for Cascading Dropdown in MVC3
I'm working in Asp.net MVC3. I'm using two DropdownList which are Vertical and Account. Based on the selection of Vertical, Account DropdownList should get visible and populated with data according to ...
1
vote
0answers
26 views
Cascade Drop Down List with ajax in MVC 3 Not working
Hi I am using ajax with cascade drop down list in mvc 3. Here is the code :
<script>
function LoadSubCat() {
var des = $("#CategoryID").val();
// Call our controller method and ...
0
votes
0answers
48 views
MVC 3 accessing model errors via ajax
I'm working on a fairly large MVC 3 web application. Various programmers of varying skills have worked on this for the past few years and so understanding it all is a slow and frustrating process.
My ...
0
votes
1answer
23 views
How to use RedirectToAction when posting to an action with ajax
I have the following jQuery:
$.ajax({
type: 'POST',
url: "MyController/MyAction",
data: $("form").serialize(),
dataType: "json"
...
0
votes
1answer
12 views
Send space in route mvc
I have to implement search with MVC3, where user can search any word or words, now if i write only a sigle word its work fine and my route will be like
/search/toy
and toy is recognise by my ...
2
votes
1answer
90 views
MVC 3 with ajax submit complex object to controller
I am using just mvc 3 with c# and ajax javascript and I have a view with a strongly typed model bound to it.
<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" ...
0
votes
1answer
68 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 ...
0
votes
1answer
67 views
MVC3, returning Json to originating page from partialview in jquery dialog
I am trying to use jQueryUI dialogs to show a list of matched data and return the chosen data, via JSon to the original view using ajax/jquery.
The flow is View (user completes textbox and clicks ...