Quantcast
Channel: User Just code - Stack Overflow
Viewing all articles
Browse latest Browse all 41

Answer by Just code for Is there any way to set a background colour to the full column for Saturday and Sunday in 'React Full Calendar'

$
0
0

You can use dayPropGetter property to customize it

Here is how your function should looks like

const customDayPropGetter = (date: Date) => {  if (date.getDate() === 7 || date.getDate() === 6)    return {      className: 'special-day',      style: {        border: 'solid 3px '+ (date.getDate() === 7 ? '#faa' : '#afa'),      },    };  else return {};};

and assign function like this

 dayPropGetter={customDayPropGetter}

demo

source


Viewing all articles
Browse latest Browse all 41

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>