datetime 1.5.2 default time ?

datetime 1.5.2 default time ?

crush123crush123 Posts: 417Questions: 126Answers: 18

Is it possible to set a default time in the datetime picker, I have an event planner, and merting times usually start at 6pm, so it would be a useful feature.

This question has an accepted answers - jump to answer

Answers

  • crush123crush123 Posts: 417Questions: 126Answers: 18
    Answer ✓

    Ah, worked out a way

    def:   function () {
        d = new Date();
        d.setHours(18,0);
        return d; 
    }
    
This discussion has been closed.