proxy-schedule: Create / Update / Delete schedule(s) with Proxy

Description Usage Arguments

Description

These functions allow to create new schedule(s), update existing ones and delete schedule in a calendar within the server in a Shiny application.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
cal_proxy_add(
  proxy,
  start = NULL,
  end = NULL,
  title = NULL,
  body = NULL,
  id = NULL,
  calendarId = NULL,
  category = NULL,
  ...,
  .list = NULL
)

cal_proxy_create(
  proxy,
  start = NULL,
  end = NULL,
  title = NULL,
  body = NULL,
  id = NULL,
  calendarId = NULL,
  category = NULL,
  ...,
  .list = NULL
)

cal_proxy_delete(proxy, calendarId = NULL, id = NULL, .list = NULL)

cal_proxy_update(
  proxy,
  calendarId = NULL,
  id = NULL,
  start = NULL,
  end = NULL,
  title = NULL,
  body = NULL,
  category = NULL,
  ...,
  .list = NULL
)

Arguments

proxy

A calendarProxy htmlwidget object.

start

The start time.

end

The end time.

title

The schedule title.

body

The schedule body text which is text/plain.

id

An id for the schedule.

calendarId

An id for the calendar.

category

The schedule type ('milestone', 'task', allday', 'time').

...

Additionnal arguments passed to the JavaScript method.

.list

A list with same information as above, useful with input$<outputId>_<add/update/delete>_schedule.


dreamRs/tuicalendr documentation built on Aug. 4, 2021, 12:02 a.m.