Skip to content

Instantly share code, notes, and snippets.

@john-magrini
john-magrini / .r
Last active September 8, 2018 23:45
Shiny CRUD App with dateInput
library(shiny)
library(shinyjs)
# Get table metadata. For now, just the fields
# Further development: also define field types
# and create inputs generically
GetTableMetadata <- function() {
fields <- c(id = "Id",
name = "Name",