Questions tagged monthly

How to show week number in Monthly calendar View?

Answered: You can show the week numbers in the first cell using onBeforeCellRender. Example for ISO week number (week starting on Monday): dp.onBeforeCellRender = function(args) { if (args.cell.start.getDayOfW...

Getting tag URL Parameter from JSON Request

Answered: There are two options: 1. You can send the url from the server: class Event {} class Tags {} $events = array(); foreach($result as $row) { $e = new Event(); $e->id = $row['plan_id']; $e->text = $row[...

Delete icon in Monthly Calendar

Answered: I can see the delete icon on this demo page (IE, FF, Chrome, Edge): http://javascript.daypilot.org/demo/month/eventdeleting.html Do see the problem in the demo as well? A few things to check: 1. The ...