81 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
50
views
datetimepicker minDate/maxDate in adminLTE template
I can't get minDate and maxDate to work on the two date fields.
Selected by date from the first field, the second does not set minDate.
I followed the example on https://getdatepicker.com/4/
I don't ...
0
votes
0
answers
66
views
Epoch Datetime Conversion
I have this raw Data. An excerpt of the raw data was:
data2 = """
|--------------------------------------------------|
| Stored images: |
|-----------------------------...
0
votes
0
answers
253
views
Tkinter DateEntry Calendar Mindate not allowing December month of the same year
I am setting the minimum date for selection in calendar to 1st Jan 2022 but I am unable to select any day for the month Dec 2022. All other months are working fine. I observed that if the day is set ...
0
votes
1
answer
242
views
How do I set a datePicker's min and max to only apply when editing?
I have a compact date picker that gets its date from an api. This date can be anywhere in time (no restrictions) I then set that date to the datePicker. All works fine.
I want to allow the user to ...
user avatar
user14023669
0
votes
1
answer
727
views
MariaDB Select Min-Date (earliest) from multiple columns
I need to do a select within a MariaDB, where I have one row per customer and the earliest date out of three different tables with action datetime values.
Example Tables:
Main Table
customer-id
...
0
votes
2
answers
661
views
Restrict picking minimum and maximum date with vanilla javascript for hotel reservation
I have a form for hotel reservation. I just need to validate the checkin date and the checkout date, don‘t look for a whole booking engine either.
I have 2 input date fields, one for CHECKIN, the ...
0
votes
0
answers
105
views
Unable to pick future date in my calendar, and also not able to get date as 2 digit
This is my kotlin file
class MainActivity : AppCompatActivity() {
var datePicker: DatePickerDialog? = null
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
...
0
votes
2
answers
1k
views
Get the value of the earliest and the latest date in mysql
I have a table that shows the delivery day that customers choose, but this can change and the table adds a new record per change, so I want a table that gets the first value they choose and the last ...
0
votes
1
answer
262
views
Python function that returns first day and last day from x months ago
The following python code returns the first/last day of prev month but I want to be able to return the first day from 3 months ago instead
from datetime import date, timedelta
last_day_of_prev_month =...
0
votes
1
answer
500
views
How can I set the specific selected date to min date in android date picker? (java)
I have 2 DatePickers, one is start date picker and the other is end date picker. I want to set the min date of the end DatePicker to the start date which user has selected.
I set the Data which user ...
0
votes
1
answer
137
views
How can I set the specific selected date to min date in android date picker? [duplicate]
I have 2 DatePickers, one is start date picker and the other is end date picker.
I want to set the min date of the end DatePicker to the start date which user has selected.
I've tried in this way but ...
-2
votes
1
answer
198
views
MySQL_Retrieving stock price based on max and min_date
I am trying to retrieve closed and opened stock prices from the first and last date per month.
For some reason, the output of the 'end_date_closed_stock_price' is NULL.
Do you know any idea why it is ...
1
vote
1
answer
284
views
how to set min date of jquery date picker depending on the models.DateField in django
class Post(models.Model):
ref_no = models.CharField(max_length=6, null=True, blank=True, unique=True)
select_section = models.CharField(max_length=20, choices=Sections)
incident = models....
0
votes
1
answer
77
views
How to set minDate and defaultDate together in jquery datepicker
I am trying to show minDate:1 and defaultDate:+3 in datepicker.
$( ".datepicker1" ).datepicker({
dateFormat: "mm-dd-yy",
altFormat: "yy-mm-dd",
...
1
vote
0
answers
496
views
WooCommerce Bookings: how to set minimal date of date picker?
In my business, I can only serve bookings with a lead time of 5 days. I am using WooCommerce Bookings but I do not know how to code the following.
When a customer is in the single product page and ...