Hello, i heard there’s an option in the calendar of SuiteCRM that allows you to show the week numbers, but it’s not working for me. i went to jssource/src_files/modules/Calendar/cal.js, and edited this line:
// weekNumbers: true
it worked thanks! now the number of weeks are displaying, but they’re wrong. week 1 should start from january but it’s starting from February 21st. maybe it’s a bug from the js file?
edit. solved it!
i had to add this lines in cal.js:
firstDay: 1,
weekNumberCalculation: ‘ISO’,
now the week numbers are starting from January