Datepicker - Need option to select next month date on current month calendar

Date Picker - need the option to select next month date on current month calendar if it’s possible
in the account, I create the call activity in date picker I need the next month’s day to be enabled.

in date picker the dates 1,2,3,4 I can’t select them any option to enable them

1 Like

@crmspace @pgr

Any clue on how this could be achieved?

Hi @Mac-Rae
I Apologies for creating duplicate posts i taught it will be a message for u in personal i never taught i would be in public
i was struggling in these more than a week, so i tagged professional’s for help .

1 Like

@Mac-Rae, sorry, I personally never customized this particular area, so no specific solutions. I would try to figure out which component is used for the date-picker and if it has any configuration in Suite.

1 Like

Hi @crmspace
can u please look at these post he as explained about the components used you may get some idea by looking at these
https://community.suitecrm.com/t/datepicker-need-option-to-select-next-month-date-on-current-month-calendar/73453

Hi @Mac-Rae @crmspace
I achieved it
include\javascript\yui\build\calendar\calendar-min.js
styleCellNotThisMonth:function(h,g){YAHOO.util.Dom.addClass(g,this.Style.CSS_CELL_OOM);
to
styleCellNotThisMonth:function(h,g){YAHOO.util.Dom.addClass(g,this.Style.CSS_CELL_SELECTABLE);
repair the CRM
now the another month date can be selected form current month

1 Like

Nice detective work :male_detective:!

It would be even nicer if this changed could be achieved higher up, in the file hierarchy, instead of inside the YUI include (3rd party code). If it could, I think we should put it into the core code, for everyone.

1 Like

Hi @pgr
I tried many ways…only these worked for me.

Sadly this method didn’t work for me. Maybe I did something wrong.

This worked for me, namely changing OOM to Selectable with 7.14. After the repair etc… it didn’t work right away, albeit maybe the browser cache prevented it at first…Not sure. But thanks for solving this issue. This should be the way it is right out of the gate IMHO

Yes, we need to do Empty Cache and Hard Reload on the browser.

image