Tagged Questions
1
vote
1answer
205 views
Why a jquery datepicker change days for months?
I'm working on MVC project, and using the jquery datepicker I have problems in the post.
I use a partial view which contains the text box and the jquery function. Like this:
@model ...
0
votes
1answer
144 views
Change label text when select a date from J Query date-picker
I have the following function that take the date picked using J Query date-picker and call code behind function in C#
<script>
$(function () {
$("#datepicker").datepicker(
...
0
votes
0answers
106 views
jQuery DatePicker issue with IE
I am working with C# asp.net. In my page I have GridView where I use jQuery date picker in that. Before I use old jQuery UI and I found that old jQuery UI is having bug with IE. So I update my
jQuery ...
-3
votes
1answer
174 views
Error when updating date field in sql server using c#
I am trying to insert a date (date only, not datetime) into sql table (the datatype is date).
I am using the '23/07/2013' format which I am getting from jquery datepicker.
When I execute the ...
2
votes
2answers
1k views
MVC and jQuery datepicker
What I'm trying to is apply datepicker into textboxes with class attribute equals datepicker.
So I'm doing it like this:
_Layout.cshtml
<!DOCTYPE html>
<html lang="en">
<head>
...
0
votes
0answers
75 views
jquery condition to effect from a retrived date
hello friends i have a problem with jquery datepicker that i have used in my asp.net application with c# and on backend sql server 2008 R2 ..
in my project i retrive date value from database in the ...
1
vote
2answers
596 views
set default date using datepicker in jQuery and Razor (c#)
We have a common.js file which contains the commonly used client/jquery related functions and validations. This common.js is included in the _Layout.cshtml. In this common.js file we have datepicker ...
0
votes
1answer
261 views
Jquery datepicker is not working in MVC?
Here i am using a jquery datepicker from this sample http://dev.jtsage.com/jQM-DateBox2.
It is working fine but the problem is after clicking the submit button if there is any mandatory field ...
2
votes
5answers
1k views
How I can use JQuery Datepicker with a Icon and a Format in ASP.NET
I want to use jQuery for my Textbox. I want use the Datepicker with the format yyyy-mm-dd and with an Icon.
<script>
$( "#txtVon" ).datepicker({
showOn: "button",
...
0
votes
1answer
819 views
jquery datePicker fire textchange event
i create server control with jquery datepicker , which i initial in my render method.
in the textbox i set autopostback and add custom event to fire on textchanged
this is the server side :
...
0
votes
3answers
285 views
How I can use a other dateformat in my jQuery Datepicker?
I use a jquery datepicker in my ASP.NEt Application and I want if the User is from Spania or german I use a other dateformat.
Here is my jquery code:
$(function () {
...
0
votes
1answer
236 views
jQuery datepicker doesn't work in Modal MVC 3
DatePicker works around the project, but does not work in a modal. The Modal is a partial View.
This in a editor template.
DateTime.cshtml
@model System.DateTime?
@Html.TextBox("", ...
0
votes
1answer
813 views
Jquery datepicker unable to capture value of SUBMIT control in code behind
I am using the jQuery DatePicker control. The control displays properly but I am unable to get the selected value in my code behind page. I attempt to capture the user-selected value using: ...
0
votes
4answers
248 views
Datepicker displayed incorrectly
I am trying to write an MVC.NET web-site and I want to use datepicker component from jQuerry.
To use jQuery I am using the following code on my Layout page:
<head>
...
0
votes
1answer
913 views
JQuery datepicker inside modal popup dialog is loosing calendar icon on second time selection MVC
I have datepicker in modal popup dialog. In first iteration everything is ok. When I open the popup second time the clandar icon in datepicker is missing, general datepicker is not responding. I ...
0
votes
3answers
552 views
Jquery time picker not working in the usercontrol
When i use the below code in webpage (.aspx file), it works fine; but when I use the below in a user control (.ascx file) it does not work.
How to fix this? Do i have to do any modifications in the ...
0
votes
1answer
542 views
MVC3 date validation fails on Mac
Short version:
I’ve built a simple website with ASP.NET MVC3, and I’ve run into a peculiar issue with date-fields, the jQuery datepicker, validation and Mac browsers. In short, the date-field is ...
1
vote
1answer
2k views
MVC jquery datepicker for create allow nulls
I was checking out this link:
http://blogs.msdn.com/b/stuartleeks/archive/2011/01/25/asp-net-mvc-3-integrating-with-the-jquery-ui-date-picker-and-adding-a-jquery-validate-date-range-validator.aspx
...