Tagged Questions
0
votes
1answer
29 views
Dynamically creating a select list from a collection in my model
I have this in my view:
<script type="text/javascript" language="javascript">
$(document).ready(function () {
$('a.create').click(function () {
// create dropdown, ...
0
votes
1answer
27 views
Looking for alerts or notifications in MVC 4
Watch the next image.
It's something like an alert or notification and some of them have a close button to the right of the border.
I would like to implement that in my MVC 4 project where the ...
0
votes
0answers
15 views
Asp.net Mvc4 integrate with Facebook [closed]
I have asp.net mvc 4 web application, I want to allow people to share the page from my application on facebook as well as to use facebook autentication to comment. I prefer to not store user data from ...
0
votes
2answers
35 views
ASP.NET MVC - Propagate a server side event to the client
In my ASP.NET MVC app, the user clicks a button on the UI to make a phone call. An ajax request goes to the MVC app, which calls a phone dialer -- a method in library that calls an external component ...
0
votes
1answer
37 views
Post JSON to asp.net MVC controller, not Ajax
I want to post JSON to controller action and I want that action to direct me to another view not same with Ajax response :
JS:
geocoder.geocode(
{
'address': address
...
0
votes
1answer
22 views
Can't get data to load into jTable in mvc 4
Okay, so I'm trying out jTable for the first time and I can get the table to load, but that does me very little good because it won't load with any of my data. When I debug the program, all of the ...
0
votes
1answer
15 views
Jquery - Resonse.statusText is undefined even though it shows up in the browser tools
In my Action Methods I return:
catch (Exception ex)
{
return new HttpStatusCodeResult(500, "This is an error!");
}
In my backbone.js fetch I am using this:
error: function(response, status, ...
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
23 views
JQuery pass extra param to Ui Dialog
I'm searching for a solution for my propblem.
I'm using MVC Razor for create a website.
In a list of products I would like to open a popup (Jquery dialog) in wich a partial view can be opened.
But ...
5
votes
1answer
25 views
How to Bind the Multiple Marker in dynamic using jquery in google maps
I need to bind the "Multiple marker" in Google map, based on the given latitude and longitude and also bind the the marker info window.
I have Refereed this Link
And I have tried this code:
var ...
0
votes
1answer
26 views
displaying alert message in mvc3 controller
[HttpPost]
public ActionResult BasicInfStep0( PricingPackModel pricingPackModel)
{
bool isEventSaved = false;
try
{
string Zip = ...
0
votes
1answer
23 views
Presenting Modal After Form Submission in MVC
I am trying to create a modal that will tell the user their submission was successfully submitted. This works fairly well, but the only problem is I have to declare each of my properties and assign it ...
0
votes
1answer
27 views
Execute script after razor syntax is executed
I have some razor syntax which is dynamically generating an html table and populating with data while generating it. I needed to make a jQuery ajax call to my MVC ASP.Net controller to get some data ...
0
votes
1answer
15 views
TypeError: a is undefined with Select2 plugin in asp.net MVC?
I create my Select on the on change event of another dropdown, so here is my script:
$ddlOther.on('change', function(e) {
var Json = {},
persons = [];
Json.id = ...
2
votes
3answers
41 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
1answer
34 views
object doesn't support this property in jquery mvc4
@Scripts.Render("~/bundles/jquery", "~/bundles/jqueryui", "~/bundles/WorkbenchScripts")
@Styles.Render("~/Content/WorkbenchCss")
<script type="text/javascript">
$(document).ready(function ...
-1
votes
0answers
21 views
Jquery File Upload (blueimp/jQuery-File-Upload) - ASP.NET MVC - How to Cancel Upload Async [closed]
I created this in my github repository where I have the code of JqueryFileUploadblueimp implemented with ASP.NET MVC. Need some help about it, because I would like to know how can I cancel an UPLOAD ...
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
38 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 ...
1
vote
2answers
46 views
Calling view from JavaScript
I've got a JavaScript function defined like this:
function onQuickSearchClick(s) {
var query = s.GetText();
$.post('/Search/', { query: query });
}
Now I want to call the View "Search" ...
0
votes
3answers
79 views
ASP.NET MVC4 - JQuery jqFancyTransitions error: TypeError: $(…).jqFancyTransitions is not a function
I have my Index.cshtml view, and for some reason, the JQuery is having a hard time firing the jqFancyTransitions method (it's acting as if the jqFancyTransitions library isn't included). The ...
0
votes
1answer
41 views
AJAX form only submitting when unobtrusive AJAX is NOT loaded
I have two identical AJAX forms in my website (the only difference is the way they are included). One form only works when I include unobtrusive AJAX in my template. The other form only works when I ...
0
votes
2answers
37 views
MVC ajax calling controller method
I am trying to use ajax to call a controller method and i am getting a internal server error.
The jquery looks like this:
function user(id) {
alert(id+" "+$("#comment").val());
var param = {
...
0
votes
3answers
41 views
Special characters like '&' and '£' cuts my the twitter text that get passed
I seems that everytime @item.title contains any special characters like '&' or '£' etc it cutz the twitter text that get passed.
Is there any good solutions to fix this? Any kind of help is ...
1
vote
1answer
24 views
JQgrid on c# MVC Page DateTime getting displayed wtih timezone offset applied… want to display server time instead
We are using a JQgrid in an asp.net MVC application...
The Jqgrids are as designed doing the time zone offsets on all date times displayed within...
we want to display the server time instead (non ...
0
votes
5answers
59 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
42 views
use condition in cshtml tags
I try to have a condition tag inside my cshtml page
<script type="text/javascript">
var isTrendClicked = false;
function trendChart() {
$('.sparkline1').sparkline()
}
if ...
0
votes
1answer
16 views
Dispose jqTree object completely
I need to reload data depending on a query result, but after I pass all the information to the treeview object again, the parent node is lost. I have tried to reset the json object and it doesn't ...
1
vote
1answer
57 views
Custom Number Incrementing Field MVC
I've had an idea for a html field in MVC. And thats the number incrementing textbox.
How would you go about doing that?
The idea is that I have form with some information that needs to be sumbitted. ...
0
votes
2answers
25 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
18 views
how to close jquery popup on successful login redirecting to new view or show error on the same pop without closing it
I am creating a login page on jquery popup when i click on login
button it should redirect to some page closing the popup if the
password matches else it should show an error message on the ...
0
votes
0answers
32 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
1answer
31 views
How to disable the default JQM page in a SPA?
I have a single page JQM application - all JQM "pages" are in one document:
<div>
@RenderPage("Views/login.cshtml")
@RenderPage("Views/page1.cshtml")
...
0
votes
1answer
44 views
Jquery UI datepicker renders in every tr except the last
I have a piece of jquery code that gets dynamically called, and generates any number of tr tags. In each tr tag I have an input of type text set to the jquery ui datepicker. The datepicker will ...
0
votes
3answers
43 views
Unobtrusive Client side validation in MVC4 not working
I have layout page with all scripts as shown below.
<!DOCTYPE html>
<html lang="en">
<head>
<title>My Site</title>
<link href="~/favicon.ico" rel="shortcut ...
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
2answers
62 views
MVC Javascript DateTime
I have been developing a new website and have come across a strange datetime problem which I cannot seem to work out what is wrong.
My staging server is here: Link
As you can see, people can enquire ...
0
votes
1answer
48 views
MVC RegEx Triggers Validation Before page Load
My ApplicationController:
public class ApplicationController : Controller
{
private IUxRepository _repository;
public ApplicationController(IUxRepository repository)
{
_repository = ...
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
2answers
31 views
MVC: Button not firing click event in a tablecell
EDIT - I am putting in more info to help get the answer.
What I am doing is using autocomplete to add items to a list;
<section id="rightSide" class="shrinkwrap" style="float: ...
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) ...
3
votes
1answer
40 views
JavaScript - Submit Form - To a specific method on a controller
I've got an MVC 4 app. I have the following JavaScript function that fires whenever a change is made to an element with an Id of 'file'. The submit works fine. However, I would like to submit to a ...
0
votes
1answer
42 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 ...
0
votes
1answer
40 views
Open file in new window
I have jquery function which calls an action GetReport which returns a pdf file.
This is the Action
return File(renderedBytes, mimeType);
This is the function
function showReport() {
var clinic ...
0
votes
1answer
17 views
jquery.wysiwyg work with mvc2
I'm using jquery.wysiwyg (https://github.com/akzhan/jwysiwyg) with MVC2. How can I get the value of textarea?
<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" ...
1
vote
0answers
32 views
ASP.Net MVC jQuery and plugins loaded in wrong order
I'm using ASP.Net MVC and attempting to use the TinyMCE HTML editor.
I added this from NuGet - however, it adds an EditorTemplate (Shared -> EditorTemplates -> tinymce_jquery_full.cshtml), ...
5
votes
2answers
54 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
78 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
27 views
Javascript and ASP MVC - refreshing an image
I have a page that contains a captcha. whenever the user enters the captcha incorrectly the form will submit and they will move on. If not, i want to refresh the captcha image so that the user has ...
0
votes
3answers
70 views
Get Razor to not recognize @ symbol every time
So when putting an @ symbol into a javascript portion of an MVC Code such as
$("#filter").tweet({
count: @Model.Tweets,
filter: function(t){ return ! /^@\w+/.test(t["tweet_raw_text"]},
username: ...







