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

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

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