Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
^renv$
^renv\.lock$
^.*\.Rproj$
^\.Rproj\.user$
build.R
Expand Down
1 change: 1 addition & 0 deletions .Rprofile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
source("renv/activate.R")
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ Version: 1.1.0
Authors@R: person("Jason", "Bryer", email = "jason@bryer.org", role = c("aut", "cre"))
Description: This package extends the DT::DataTable to allow users to create, edit, and delete
rows from the data table.
Depends: R (>= 4.1.0), DT, shiny
Depends: R (>= 4.1.0), DT, shiny, shinyjs
Suggests: RSQLite
License: LGPL (>= 3)
Encoding: UTF-8
LazyData: true
RoxygenNote: 7.2.1
RoxygenNote: 7.3.1
3 changes: 1 addition & 2 deletions R/DTedit-package.R
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
#' Editable DataTables for shiny apps
#'
#' @name DTedit-package
#' @docType package
#' @title Editable DataTables for shiny apps
#' @author \email{jason@@bryer.org}
#' @keywords package shiny DataTable
#' @importFrom shiny reactiveValues selectInput textInput dateInput numericInput
#' textAreaInput passwordInput renderText modalDialog div textOutput modalButton
#' actionButton showModal observeEvent p column br removeModal renderUI runApp
#' @importFrom DT dataTableOutput renderDataTable dataTableProxy replaceData
NA
"_PACKAGE"
928 changes: 491 additions & 437 deletions R/dtedit.R

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions man/DTedit-package.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 9 additions & 1 deletion man/dtedit.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading