Every line of 'jquery datepicker get selected date value' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.
83 _getDate(date, minDate = this.state.minDate, maxDate = this.state.maxDate) { 84 // If no date is provided then use current date 85 // Make sure we constrain it to the min and max 86 const current = (date instanceof Date) ? date : new Date(); 87 88 if (minDate && current < minDate) { 89 return minDate; 90 } 91 92 if (maxDate && current > maxDate) { 93 return maxDate; 94 } 95 96 return current; 97 }
22 getSelectedDate() { 23 const dayOfWeek = ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']; 24 const month = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']; 25 26 return `${dayOfWeek[this.state.date.getDay()]}, ${month[this.state.date.getMonth()]} ${this.state.date.getDate()}`; 27 }
53 get date(): Date { 54 return this._getValue(DatePicker.dateProperty); 55 }
37 getSelectedDate() { 38 return [ 39 yearRange[this.yearWheel.currentValue()], 40 this.monthWheel.currentValue() + 1, 41 this.dayWheel.currentValue() + 1 42 ].join("-"); 43 }
20 function updateDatePicker() { 21 22 var searchType = $("#selSearchType").val(); 23 if (searchType == "day") { 24 25 var endDay = new Date(); 26 var startDay = new Date(); 27 startDay.setMonth(endDay.getMonth()-1); 28 29 $("#dpStart").datepicker("option", "dateFormat", "yy-mm-dd"); 30 $("#dpStart").datepicker("setDate", startDay); 31 $("#dpEnd").datepicker("option", "dateFormat", "yy-mm-dd"); 32 $("#dpEnd").datepicker("setDate", endDay); 33 34 } else if (searchType == "month") { 35 36 var endMonth = new Date(); 37 var startMonth = new Date(); 38 startMonth.setFullYear(endMonth.getFullYear()-1); 39 40 $("#dpStart").datepicker("option", "dateFormat", "yy-mm"); 41 $("#dpStart").datepicker("setDate", startMonth); 42 $("#dpEnd").datepicker("option", "dateFormat", "yy-mm"); 43 $("#dpEnd").datepicker("setDate", endMonth); 44 45 } 46 }
114 private set initDate(value:Date) { 115 this._initDate = value; 116 }
285 getDate() { 286 return new Date(this.date.getTime()); 287 }
18 function updateDatePicker() { 19 20 var startMonth = new Date(); 21 22 $("#dpStart").datepicker("option", "dateFormat", "yy-mm-dd"); 23 $("#dpStart").datepicker("setDate", startMonth); 24 }
182 getDateInstance( v ) { 183 return this.props.moment( v ).toDate(); 184 }
21 get value() { 22 if (!this.props.value) return null; 23 const date = isDate(this.props.value) 24 ? this.props.value 25 : new Date(this.props.value); 26 27 return this.dateUTC(date); 28 }