Tagged Questions
1
vote
1answer
367 views
Jqueryui - Datepicker - Date range offset
I am using jqueryUI datepicker for a reservation form.
here's the almost intact code from datepicker with date-range
$(function() {
var dates = $( "#from, #to" ).datepicker({
dateFormat: ...
0
votes
4answers
919 views
Java Generate all dates between x and y
I attempted to generate the date range between date x and date y but failed. I have the same method in c# so I tried to modify it as much as I can but failed to get result. Any idea what I could fix?
...
0
votes
2answers
2k views
Java. Check time range. How?
For example, I have input parameter this format: "04:00-06:00" or "23:00-24:00". Type of parameter - String.
And in my method I must check, that time range in input parameter NOT before current time. ...
3
votes
2answers
809 views
Guava's Ranges.asSet outputting infinite list
I am trying to get a date range using Guava's new Range functionality, via
Range<Date> dateRange = Ranges.range(start, BoundType.CLOSED, end, BoundType.CLOSED);
My goal is to get the hours in ...
0
votes
3answers
617 views
Can I use Calendar in a Struts2 Validator Annotation?
Is it possible to use the java.util.Calendar in a Struts2 IntRangeFieldValidator?
The following code does not produce any OGNL errors but does not work either. I'm trying to create a validation rule ...
7
votes
10answers
3k views
How do you store Date ranges, which are actually timestamps
Java & Oracle both have a timestamp type called Date. Developers tend to manipulate these as if they were calendar dates, which I've seen cause nasty one-off bugs.
For a basic date quantity you ...