Tagged Questions
0
votes
1answer
47 views
How to parse date time from json? [duplicate]
I have a Action Method like this
public ActionResult TodayJson()
{
DateTime today = DateTime.Today;
return Json(today,JsonRequestBehavior.AllowGet);
}
that ...
0
votes
1answer
13 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 = ...
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 ...
1
vote
0answers
22 views
Set positioning of jQuery calendar
I'm working on a asp.net mvc 3 application. I use razor but I think in this case it's not relevant to the problem. I use an inherited jQuery datetime picker which works fine for all my pages where I ...
1
vote
1answer
33 views
Jquery getJSON is not working within MVC3
Hi I am trying to do a getJSON but for some reason it is silently failing.
Here is the code:
$("#distanceMiles").change(function () {
$("#distanceMiles ...
1
vote
1answer
56 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. ...
1
vote
0answers
13 views
How to reload the column view list using the jquery.columnview-1.2.js
I have used the jquery plugin for building an ui as mentioned in the website:
http://christianyates.com/blog/jquery/finder-column-view-hierarchical-lists-jquery
below the columns list I have a ...
0
votes
1answer
26 views
How to pass parameters in WCF Json service which doesn't have .svc file?
I am using a .cs file instead of .svc to call my wcf service. It works fine for service methods without parameters , but not for methods with parameters. Below is the code:
service.cs
using ...
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: ...
1
vote
3answers
37 views
Starting client-side validation when using BeginForm helper
I am working on a asp.net mvc 3 application and I have problem with getting my unobtrusive JS validation to work. I've asked very similar question but since I don't get any answers but think that I ...
1
vote
2answers
36 views
Client side validation of from which is using partial views
I just completed the visualization logic for my form and now I want to get use of the client side validation that asp.net mvc 3 provides. However even though I'm following some examples I can't make ...
1
vote
0answers
31 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
0answers
19 views
How to create Vertical Menu (3-6 levels) Recursively in MVC3 (Razor)? [closed]
I am trying to achieve something similar to this example -
...
0
votes
1answer
29 views
condition not getting satisfied in js in MVC
I am developing an MVC application. I have written some js for comparing two values in a dropdown. Even though the values are the same the condition is not getting satisfied and skipping the code ...
0
votes
0answers
46 views
How to create a Navigatable Tree View Menu in MVC3
I have to create a Navigatable Tree View in an MVC 3 project. This treeview has to be generated from the database.
There will be 3-5 levels for this tree and the final node of the tree view will be ...
2
votes
3answers
43 views
function gets called even when the ID is not present in the document
I have the following javascript:
$(document).ready(function () {
...
$("#mySelector").ready(function () {
window.alert('What the hell!!!');
});
});
I would expect pop up ...
0
votes
1answer
33 views
How can I force my MVC client side validation when updating values in script
If I have a required field on my form within my MVC3 page, and try submitting the form, the validation fires and the input control is given a light-red background color (fill) and it also shows a ...
0
votes
2answers
37 views
MVC 3 Checkbox Turn Off Validation Not Using RequiredAttribute
I've been looking around stackoverflow for this answer. Can't seem to get anywhere with them. I have an entity which has 5 navigation properties to other entities. Example:
public class Computer : ...
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
75 views
How can i auto complete a dropdown list using ajax in MVC
I'm trying to autocomplete a drop down list when someone types a postcode into a input field but I haven t been able to fill the dropdown list yet this is where I am:
JQuery
<script ...
1
vote
2answers
65 views
Decode/Decrypt string using jquery or javascript that was originally encoded in C#
I have a string that is encoded/encrypted using the following C# code:
public static string Encode(string text)
{
if (!Enabled)
return text;
return "~/Enc/" + ...
0
votes
2answers
42 views
running code that replaces placeholder text on each razor view MVC4
If I had the following razor pages:
(Excuse the terrible examples..)
Page1.cshtml
Hello @Model.Name, welcome to {sitename}
Page2.cshtml
{sitename} has had @Model.visitorcount today
And at ...
0
votes
0answers
29 views
Jquery accordion and mvc
So this is my accordion
var icons = {
header: "ui-icon-circle-arrow-e",
activeHeader: "ui-icon-circle-arrow-s"
};
$("#accordion").accordion({
collapsible: true,
...
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 ...
2
votes
4answers
52 views
Get id of element which raised event
I am working in asp.net mvc. I have following JS
<script>
function fun()
{
alert($(this).attr("id"));
}
</script>
And following code in View
@
{
int i=1;
}
...
0
votes
1answer
42 views
Issues binding complex json model in MVC3 controller
I have been struggling to get this post to work in my project. Bascially, I am passing a list of Install objects ( an install object contains a list of Facility objects) to my controller. I have yet ...
0
votes
1answer
41 views
How to pass values from JSTree Menu to MVC controller
I am using the example in -
http://codemyne.net/articles/Populating-Treeview-with-checkboxes-using-MVC3Razor-Jstree-Jquery.aspx?visitid=149&type=2
I want to pass values of the selected node to ...
-1
votes
0answers
66 views
how to add json data into jqgrid and how exactly jsonreader will work?
I am not able to populate JSON data in to jqgrid. No error is received, in the success callback I am getting expected output. Code:
<script language="javascript" type="text/javascript">
...
0
votes
2answers
56 views
Adding jQuery datepicker for more than one text box in asp.net mvc 3
I am working on an asp.net mvc 3 application. In one of my partial views I render all fields that should provide the option to select date. I use the jQuery datepicker plugin and some sample code I ...
1
vote
1answer
36 views
`jqgrid` is not a function error when working in mvc4 cshtml page but working fine in aspx page
i am trying to bind json format data to jqgrid when i am trying the same code in aspx page its not throwing any error but in cshtml page page its throwing error that jqgrid is not a function.i cannt ...
0
votes
1answer
47 views
Including Trent Richardson datetimepicker in asp.net mvc 3 application
I need a Date-Time picker for one of my views so I decided to use the Trent Richardson's one, as it seems to be the most popular choice. However until now I can not make it work and I'm not sure if ...
0
votes
2answers
42 views
Return value from controller using $.param in MVC
I am using asp.net MVC, in the application I update an image using the following:
Controller:
public ActionResult OutputHandler(int slide = 0)
{
FileContentResult data;
...
0
votes
1answer
41 views
Multiple form in MVC 3 and Ajax
My page in working perfectly with postback. My problem is that it's kind of anoying every ingredients or subtitles that people submit, it reloads the entire page. So, I though that it could be a good ...
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, ...
2
votes
2answers
51 views
getting File from server
I'm implementing export to csv in MVC.
Since the parameters are datetime types I need to send the data in post because of user different cultures.
Server Code:
[HttpPost]
public async ...
1
vote
2answers
61 views
HTML textarea with image upload
I'm currently in need of develop a website that allow user to input information and images into a <textarea> then save to database. Those data will be displayed in another page.
I though of ...
0
votes
1answer
51 views
Ajax always returns error
Hello to those viewing this!
I'm having some trouble a bad Ajax call.
In my MVC3 project I have a database that registers a row when a user adds another user on his friend list.
Here is the ...
0
votes
1answer
61 views
Jquery event in ASP MVC 3 Web Application
I am developing an ASP.Net MVC 3 application using C# and SQL Server 2005.
I would like to create a Jquery event on a button. It's like an accordian animation.
I have already in the template which ...
0
votes
1answer
44 views
Update value of custom data attribute in context menu
I have a list of phone numbers and multiple functions operating on them.
Edit the phone number.
Remove the phone number.
So I have used a context menu and set it for list because I have multiple ...
0
votes
0answers
31 views
How to create a Jquery animation in asp mvc based in another
I am developing an ASP.Net MVC 3 application using C# and SQL Server 2005. I am using Entity Framework with a code-first approach.
I want to make an jquery effect on a link.
I have already this ...
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
2answers
68 views
storing a js value from 1 ActionResult to use in another ActionResult
I've got a Controller, and in one of the ActionResults, there is a javascript value being returned that I can access via:
Request.QueryString["frequency"]
But I need to use that same variable in ...
1
vote
2answers
43 views
Datetime picker how to show all year
I am using jquery datetime picker. But it shows year from 2003 to 2023. I want it should show from before some 19 type of years. How will change this?
I put screenshot,
Please any suggestions?
2
votes
1answer
29 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]
...
1
vote
1answer
73 views
Call custom confirm dialog in Ajax.Beginform in MVC3
I want to be able to use a custom jquery dialog or at least be able to change the text of the buttons from OK/Cancel to something else when using the AjaxOptions.Confirm Property in the Ajax.Beginform ...
0
votes
1answer
54 views
Is it possible to bind a list of complex json objects to a C# object using an ajax GET request?
public class Person
{
public int Id { get; set; }
public string Name { get; set; }
}
public ActionResult Test (List<Person> persons)
{
...
}
Javascript:
var person = { Name: ...
0
votes
1answer
19 views
Assigning collection object of Tuple<String,String,String> to javascript variable in .NET MVC
I have a model with collection of Tuple<string,string,string>
public class PatientDetails
{
public Collection <Tuple<string,string,string>> FieldValidationRules { get; ...
0
votes
1answer
52 views
Best method to handle dynamic View logic for showing controls, JQuery or return to controller for View refresh?
I have a situation in my View where certain controls ie Checkbox or Textbox should only show if a certain value is selected in a dropdown list. The question is what is the recommended approach to ...
2
votes
0answers
93 views
How to print Html page with image using Javascript
Hi,
My application is in asp.net MVC3 coded in C#.Net, I have a certain view with the requirement to print the complete Html of a particular div in that view.
Suppose
<div id="Printable_Div" ...







