Skip to main content
Nintex Community Menu Bar

Calendar remember settings for which days are displayed in Week and Month views

  • July 8, 2024
  • 2 replies
  • 7 views

Forum|alt.badge.img+18

Say, for instance, I always want my week view to look like this:
ac2769ab57ff71e3e33e6e202d3a1b5c74037203.png

This topic has been closed for replies.

2 replies

Forum|alt.badge.img+17
  • Nintex Employee
  • July 8, 2024

Yes.  This has been requested as we more completely flesh out user preferences that get remembered. 


Forum|alt.badge.img+18
  • Author
  • July 8, 2024

Here’s a quick inline script which removes monday and friday, for example:

$(document.body).one('pageload',function(){ <br>//Remove Monday and Friday from Week and Month Calendars<br>if( $('.nx-cal').length ) {<br>if ( $('.nx-cal-dowpicker').length ) {<br>$('.nx-cal-dowpicker').children()[1].click();<br>$('.nx-cal-dowpicker').children()[5].click();<br>}<br>}<br>});