View source: R/r6_DBTable_v9.R
validator_field_contents_blank | R Documentation |
A pass-through validator that accepts any data without validation. This is useful as a placeholder when no specific data content validation is needed.
validator_field_contents_blank(data)
data |
A data.frame or data.table containing the data to validate |
Always returns TRUE
# This validator always returns TRUE regardless of input
test_data <- data.frame(id = 1:3, name = c("A", "B", "C"), value = c(10, 20, 30))
validator_field_contents_blank(test_data)
# Works with any data structure
empty_data <- data.frame()
validator_field_contents_blank(empty_data)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.