How can i change start of week?

How can i change start of week?

casuistcasuist Posts: 34Questions: 14Answers: 0

Link to test case:
Debugger code (debug.datatables.net):
Error messages shown:
Description of problem:

How can I change the start of the week?
The default is on Monday.
I want to change it to "Sunday".
Please Help me...

This question has an accepted answers - jump to answer

Answers

  • colincolin Posts: 15,118Questions: 1Answers: 2,583
    Answer ✓

    You can use firstDay for that. In Editor, you would have something like

                    label: 'Registered date:',
                    name:  'registered_date',
                    type:  'datetime',
                    opts:  {
                        firstDay: 0
                    }
    

    Colin

  • casuistcasuist Posts: 34Questions: 14Answers: 0

    Thanks very much 4 colin !!!

Sign In or Register to comment.