If you have to create a calendar in a suitelet script to display an employee’s CRM activities without considering the time of the activities, you can use this code. /** *@NApiVersion 2.1 *@NScriptType Suitelet *@NModuleScope SameAccount */ define([‘N/ui/serverWidget’, ‘N/search’, ‘N/query’], function (serverWidget, search, query,) { /** * Defines the custom eventList function to an array… Continue reading Calendar in suitelet script to display all CRM activities
Tag: fullcalendar.js
What are the attributes that are used in the Fullcalendar components
The FullCalendar component in a React project has various attributes (also referred to as props) that you can use to customize the calendar’s behavior and appearance. Here are some of the most commonly used attributes: plugins: An array of plugins you want to use with the calendar. Plugins add additional views and functionalities. plugins={[dayGridPlugin, timeGridPlugin,… Continue reading What are the attributes that are used in the Fullcalendar components
How to set and use the Fullcalendar.js in the react project
After installing FullCalendar.Js and importing the css to the component. Set up the FullCalendar component: Add the FullCalendar component to your render method and configure it with the desired plugins and options. const MyCalendar = () => { const handleDateClick = (arg) => { alert(‘Date clicked: ‘ + arg.dateStr); }; return ( <FullCalendar plugins={[dayGridPlugin, timeGridPlugin,… Continue reading How to set and use the Fullcalendar.js in the react project
How to Install and import fullcalendar.js on react Project
Integrating FullCalendar.js into a React project involves several steps, including installing the necessary packages, setting up the FullCalendar component, and configuring it according to your needs. Here’s a step-by-step guide to help you set up FullCalendar in your React project: Install the necessary packages: First, we need to install FullCalendar along with its React wrapper… Continue reading How to Install and import fullcalendar.js on react Project