#' Update for rxUi
#'
#' @param object rxode2 UI object
#' @param ... Lines to update
#' @param envir Environment for evaluating ini({}) style calls
#' @return a new rxode2 updated UI object
#' @export
update.rxUi <- function(object, ..., envir=parent.frame()) {
.modelLines <- .quoteCallInfoLines(match.call(expand.dots = TRUE)[-(1:2)], envir=envir)
# x, ..., envir=parent.frame()
x <- object
.ret <- .copyUi(x) # copy so (as expected) old UI isn't affected by the call
.modelHandleModelLines(.modelLines, .ret, modifyIni=TRUE, envir=envir)
}
#'@export
update.function <- function(object, ..., envir=parent.frame()) {
.modelLines <- .quoteCallInfoLines(match.call(expand.dots = TRUE)[-(1:2)], envir=envir)
# x, ..., envir=parent.frame()
x <- object
.ret <- rxode2(x) # copy so (as expected) old UI isn't affected by the call
.modelHandleModelLines(.modelLines, .ret, modifyIni=TRUE, envir=envir)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.