All Questions
6 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 ...
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>
...
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 ...
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 ...
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 ...
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)....