Tagged Questions
1
vote
1answer
23 views
Partial View returning shared layout page as well
In my ASP MVC3 view I use the following Ajax call to retrieve a partial view and append the partial to a specific fieldset
Ajax
$("#addItem").click(function () {
alert("here");
...
1
vote
3answers
29 views
Model binding with jquery ajax serialize not working
I have the following model:
public class RegisterUseraccount
{
[Required]
[DataType(DataType.EmailAddress)]
[Display(Name = "E-Mail-Adresse")]
public string Email { get; set; }
...
2
votes
2answers
39 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
0answers
33 views
ASP.NET MVC action is not being called on huge JSON
I use asp.net mvc 2.0 and jquery for my web application. when I tried to call a MVC action by Jquery Ajax with a JSON object about 30K, my server action did not get called. I searched for a solution ...
0
votes
5answers
54 views
Posting object AJAX to MVC controller results in all properties being null
I am trying to post an object from jquery to MVC controller. The object is passed successfully but all the properties are null (or false for bools).
fwiw, if I JSON.stringify myObect then it does ...
0
votes
2answers
22 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
28 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 ...
1
vote
1answer
22 views
Date not being displayed properly when using jQuery mask
I am trying to use this jQuery plugin as an input mask on my ASP MVC edit page. However, no matter what the value is being stored in the database, the month is always displayed with two zeros: ...
0
votes
3answers
51 views
jquery ajax data result dont show
My js file below;
$('#DetailMaxGuest').change(function () {
var result = $('#DetailMaxGuest option:selected').val();
$('#DetailMaxGuest option:selected').val(result).attr('selected', ...
0
votes
1answer
32 views
Download Excel file via AJAX MVC
I have a large(ish) form in MVC.
I need to be able to generate an excel file containing data from a subset of that form.
The tricky bit is that this shouldn't affect the rest of the form and so I ...
0
votes
0answers
46 views
jquery ajax when again post clear data
I have 2 script for apart schedule.
var kisi;
$('#DetailDatepickerEnd').datepicker({
dateFormat: 'dd MM yy',
defaultDate: "+1w",
changeMonth: true,
onSelect: function (selectedDate) ...
0
votes
1answer
29 views
MVC AJAX Post one element from Model
I have a Model that looks a little like this:
Public Class MyModel
Public Property ID As Integer
Public Property Name As String
Public Property TypeID As Integer
Public Property Description As ...
1
vote
2answers
46 views
Passing values in Html.ActionLink
I am very new to MVC and have Novice's knowledge about MVC.
I am creating an MVC application, where I have this page which displays Events taking place in a particular time.
Now when I select the ...
1
vote
2answers
48 views
MVC 3 sending class JSON
My parameter KontrolkaSamTekstLista get null data to controller ActionResult KontrolkaSubmit() but all send action to ajax looks okay.
Class
using System.Collections.Generic;
namespace ...
0
votes
1answer
42 views
On initial select change, jquery does not update/render html in the view
My view seems to be one step behind after a select change. I have a select/dropdown list that is populated with a getJSON request. After an initial selection, I verified in fiddler that the request ...
0
votes
1answer
42 views
Passing array of ints from ajax call (via token-input) to controller
I've been trying to pass an array of int's created by the following function:
function getCurrentSwimmerList() {
var swimmerList = [];
$("#swimmerTable > tbody > tr").each(function () ...
0
votes
1answer
52 views
Add options to dropdownlist added by javascript MVC
How I can add options to a dropdown list added by javascript? I have the next view in a MVC application
@Html.DropDownList("list1", new SelectList(new ListDictionary()), htmlAttributes: new {@class = ...
0
votes
1answer
25 views
Transfer Ajax data to hidden textbox in mvc
I have the folloing textboxes located in a form:
<input type="text" id="duration" name="duration" readonly="readonly" style="width:0px"/>
<input type="text" id="renew" name="renew" ...
0
votes
0answers
19 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
32 views
Ajax displays div dialog in mvc view
Pretty new to ajax.
So I have this div:
<div id="authentication" title="Authentication" >
<b>Please Generate a new token to continue!</b>
<br /><br />
...
0
votes
1answer
111 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
63 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 ...
0
votes
2answers
69 views
Success and Error functions not firing in Ajax call
Below is an Ajax call I'm using to determine which menu options to show to users (I know it's a flawed method, just up against a time crunch for a demo). When the page loads, I can step through the ...
0
votes
2answers
61 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 ...
0
votes
1answer
74 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
1answer
39 views
JQuery AJAX: Update ViewModel
I have a strongly-typed MVC view that includes a form with an editor that is bound to a view model:
@model ViewModels.CommentView
@using (Ajax.BeginForm("UpdateComments", new AjaxOptions { ...
0
votes
1answer
34 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 ...
0
votes
2answers
46 views
consuming json wcf service from view in mvc
I am trying to store all information of my "user" table in wcf. and return it in json format.When i am invoking the service,i can see the entities.
But my question is how to call this service ...
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 ...
-1
votes
0answers
43 views
mvc entityframework jquery ajax not result
in my project 2 js function. First;
var kisi;
$('#DetailDatepickerEnd').datepicker({
dateFormat: 'dd MM yy',
defaultDate: "+1w",
changeMonth: true,
onSelect: ...
0
votes
1answer
41 views
Model properties null on Ajax post from list box change event
I have a view which contains a list box. when users click on an item in the list box I have to post to a controller action method to see the value of the items selected/de-selected in the list box.
...
0
votes
0answers
183 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
41 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 ...
-5
votes
0answers
54 views
building an elaborate questionnaire based on tree structure [closed]
I have a tree structure in a database with Nodes, questions, answers and decisions something like the following:
Are you a principal?
Yes
Do you need access to such and such?
Yes
...
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 ...
1
vote
3answers
63 views
What is wrong with this JQuery AJAX code
I was facing some problem with AJAX code. I was using MVC3 for our project. My requirement is bind the dropdown value using AJAX when page load. What happens when loading the page, the AJAX request ...
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) {
...
0
votes
3answers
65 views
Get Boolean Value and use it in Ajax call to controller
I have this javascript code to call a function from my controller that returns a boolean value
<script type="text/javascript">
$(function () {
$(document).ready(function NumberAmt() ...
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
1answer
53 views
jQuery/Ajax call taking excruciating amount of time to complete
Below is jQuery code I'm using for their typeahead.js plugin on my ASP MVC 3 view.
$('#typeahead').typeahead({
source: function (term, process) {
var url = ...
0
votes
1answer
50 views
Use jQuery to .post() to ASP MVC controller method w/Razor
How would you use jQuery to post to a different controller using Razor syntax? Below is the code I'm attempting to use. Each of the alerts pop up the exact information I am expecting except for the ...
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
28 views
Merge heads in ajax get call
I've full view in Orchards cms that consist of partial view. I need to get this partial view via ajax get call (i want to load whole page and the wait only for partial view). Unfortunately, partial ...
0
votes
3answers
89 views
json Array posting to mvc controller
I want to post JSON array to MVC controller through AJAX POST as:
$.ajax({
type: 'POST',
data: json.stringify(totaldata),
...
0
votes
2answers
99 views
Change label inner text that contains link using Ajax
I have a label that contains a link like following:
<label id="textlabel" > <a href="#" id="testlink">data</a> </label>
I am trying to use Ajax to change label text, but ...
0
votes
3answers
57 views
return view after ajax call
after an async call with jquery how can I return a particolar view?
this my caller view:
<script type="text/javascript">
function Run() {
$.ajax({
type: "POST",
...
1
vote
0answers
75 views
pass class of models with javascript textboxes in mvc form to ajax function
i have a class of models:
public class MyPhoneBookModel
{
public ContactsModel Contacts { get; set; }
public ContactTypesModel ContactTyeps { get; set; }
public ...
0
votes
0answers
46 views
Checkbox getting checked but not visible as checked
I am using MVC Telerik Treeview control to load my tree view. Treeview is displaying checkboxes for its Items. Now my problem is when I checkes a checkbox then it gets checked and then immediately ...
0
votes
1answer
118 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:
...
0
votes
1answer
27 views
Jquerymobile autodividers using jquery ajax
I am using listview in jquerymobile. I have ul tag and i am inserting a list of li through ajax. Now i want to implement auto-divider in listview. How can i do that.
My code is (HTML)
<ul ...



