I would like to have a Date/Time Picker where user can select Date, Hour and Minute only from this very moment.
For example now is: 03/16/2017 17:05 I would like so that client could choose closest 03/16/2017 17:06 and check before sending this date if it’s not already occurred. (In scenario when user fill on form for some long).
It would be perfect to have some check box like - Only future date is valid (include minutes).
What you need to do is add a conditional so that if they date selected is today’s date then make the minimum hour = current date times hour > extract hour + something or other.
(because you want to be able to select any hour if it is tommorrow).
If you are doing this every half an hour you can just add 0.5 hours to round up to the next 30 mins. So you might have to do a little fiddling to work out what you need to add to the hour to get it + 1 minute.
Many many years later I had the same requirement! And this was very helpful @petrucho@NigelG. With one small improvement that I think is quite funny to me.
Instead of extracting the hour first I extracted the minute / 60 and then added the :extract hour. Worked perfectly!
(I guess it could also be that bubble changed things since then)