All Questions
Tagged with jquery-ui-datepicker asp.net-mvc
109 questions
0
votes
0
answers
25
views
ASP.NET MVC : jQuery datepicker inside bootstrap modal
I am stuck on a strange issue, I have a jQuery datepicker inside a Bootstrap modal popup. It works fine for some browser resolution, but not for all. This is how I resolved it, but I want some more ...
0
votes
1
answer
584
views
Using jQuery datepicker in asp.net mvc validation error in Edge Browser
I am using jquery datepicker validator to validate text inputs.
The problem I have is, if I click submit it displays all error message correctly.
However, on the datepicker input, the text input on ...
0
votes
2
answers
1k
views
Using jQuery datepicker in asp.net mvc default value is not null
I want to add Jquery date picker to Form using asp.net mvc.
I get the datepicker but in the Form I have as default this value
And I want a date calendar to be spanish language instead of
Please help ...
0
votes
3
answers
134
views
jQuery UI dateFormat not changing format
I have a datepicker that I want to apply a custom format to but it does not work.
$(function () {
$('.datepicker').datepicker({
dateFormat: "dd-mm-yy"
});
})
But the custom format ...
0
votes
2
answers
3k
views
ASP.NET MVC : DateTime is taking format as MM/dd/yyyy but I need in dd/mm/yyyy [duplicate]
public class Employee
{
[DataType(DataType.Date)]
public DateTime DateOfRegistration { get; set; }
}
My .cshtml:
@Html.EditorFor(model => model.DateOfRegistration,
...
0
votes
1
answer
78
views
jQuery UI : Problem with datepicker on smartphones
I created a web site in ASP.NET Core MVC, using bootstrap and jquery-ui. The site works well in a desktop.
However in a smartphone, when I want to pick a date with jquery-ui datepicker, the calendar ...
0
votes
0
answers
571
views
ASP.Net MVC date validation always saying "field must be a number" (???)
I have a very simple model with a field declared as follows:
public DateTime BirthDate { get; set; }
The field has no custom validation, or any attributes besides Display.
Now, I generate an editor ...
0
votes
1
answer
164
views
MVC Change dateformat in index view
i have an indexView with a column named Month with "day-m-y time", and i want to display it just the Month and year name.
Dateformat
how can i do it? ive tried dataannotations but doesn not work..
...
4
votes
2
answers
2k
views
Problem in using jQuery datepicker in asp.net mvc
I want to add Jquery date picker to TimeofCreation Form. I can't get the datepicker nor a select button. Please help in using date picker with jquery.
I want a date calendar to be appear when user ...
0
votes
1
answer
186
views
Positioning datepicker button
I am developing my website using ASP.Net and jQuery. I am using a month picker control. I would like to put the button next to the input to show the date. Can anyone help me?
<div class="col-lg-3"&...
0
votes
2
answers
590
views
How to use JQueryUI Datepicker when there is no model to bind the DateTime field?
I'm already using this datepicker on another view, a Create() view that receives a model then I can show the datepicker by using:
<link rel="stylesheet"href="//code.jquery.com/ui/1.11.2/themes/...
0
votes
1
answer
607
views
jquery datepicker with dynamic textboxes in bootstrap Modal
i am applying jquery datepickers on dynamic controls that follow the class jq-datepicker
just setup a jsfiddle example to demonstrate the issue datepicker with modal
please click the link to follow ...
1
vote
1
answer
185
views
Date with Sept picked as null in jQuery datepicker
The application is in ASP.NET MVC 4 wherein in View there is TextBox attached to the jQuery DatePicker to select only Month and Year combo.
It is declared as:
@Html.TextBox("myDate", Model.myDate....
1
vote
1
answer
13k
views
How to add a Date Picker on my View on a MVC project
I am learning .NET MVC, I am having a bit of difficult on adding a Date Picker on my Views.
What I am trying to do is that I want to create my Model called Person.cs:
public class Person
{
...
0
votes
1
answer
93
views
How to add "Customdate" as link in dropdown list and open date upon click on it?
I want to add customdate in dropdownlist and upon click on it,should open date in MVC.
JQuery
$("#CustomDate").datepicker({
numberOfMonths: 1,
dateFormat: 'dd/mm/yy',
...