Skip to main content

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

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


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>});