Skip to main content

All Questions

0 votes
0 answers
155 views

How to make dynamic datepicker? onchange

Hi i want to set the datepicker turn off the backdate if the condition dropdown (#status) == 0 else of them the datepicker is turn on all of the date. but i have some problem, the datepicker cannot ...
Agung Donga's user avatar
0 votes
1 answer
94 views

Jquery Datepicker working fine underbody tag but not working under <td> tag

$(document).ready(function() { $("#datepicker").datepicker(); }); <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <table> <tr> ...
NMN's user avatar
  • 35
1 vote
0 answers
265 views

How may I return a value to an input field using JQuery Datepicker populated in a JavaScript pop-up?

I have implemented a JQuery DatePicker as an inline calendar, ie. without the associated text field. This DatePicker should be automately shown in a pop up window when user clicks on a calendar .gif ...
svenan's user avatar
  • 47
0 votes
2 answers
79 views

How to make the value of one variable of one javascript function available in any other function?

I want the value of someDate to be available to my datepicker's minDate. At present I have kept it as new Date() for it to work, but in place of this I need someDate value. someDate logic is there in ...
DebArghya Mondal's user avatar
0 votes
2 answers
1k views

How can I set the javascript path in my JSP to display date

My web application structure is shown like below. tomcat |--webapps |-- META-INF |-- WEB-INF |-- css |--js |-- jsp | |-- index.jsp |--web.xml aa I set the JavaScript path ...
user3048296's user avatar
1 vote
1 answer
426 views

jQuery UI datepicker cannot visualize complete year when displaying year menu

I have the following function which is called in a MVC struts application's jsps. It's a generic jQuery-UI datepicker set up. function setUpGenericDate(id) { var d=new Date(); $("#" + id)....
Yajairo87's user avatar
  • 345