The following code can be used to add calendar in a vue js page and disable the specific dates. const disableDates = (date) => { const today = new Date(); today.setHours(0, 0, 0, 0); // Check if the date is before today const isBeforeToday = date < today; const availability =… Continue reading Add a date calendar and disable specific dates in vue js
Tag: calendar
In Jira software, Create issues directly in your calendar
With just a few clicks, we can create and schedule issues directly in our calendar. Prior to this change, issues were scheduled by adding start and due dates or using the unscheduled work panel. Issues can still be scheduled in those ways, but this is now the quickest way to do it. To create an… Continue reading In Jira software, Create issues directly in your calendar
Calendar in suitelet script to display all CRM activities
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
Steps to setup a work calendar.
Create a work calendar to determine the work days available for scheduling project tasks and assigning resources. If you also use Time-Off Management, work calendars enable the system to determine which days are working days for the employee, which it uses to calculate the number of hours to deduct from an employee’s balance when a… Continue reading Steps to setup a work calendar.
Troubleshooting Steps to Show an Event on the Attendee’s Calendar
Troubleshooting Steps to Show an Event on the Attendee’s Calendar
Manage Event of other users
Manage Event of other users
Home page with calendar using suitelet
This article briefs on home page that displays calendar of events designed with suitelet at the back end.