Skip to contents

Returns the identifier of the view column with the specified name or title in the table with the specified id_tbl on a NocoDB server.

Usage

tbl_view_col_id(
  id_tbl,
  name = NULL,
  title = NULL,
  view_type = "default",
  view_name = NULL,
  view_title = NULL,
  origin = funky::config_val("origin"),
  email = funky::config_val("email"),
  password = funky::config_val("password"),
  api_token = funky::config_val("api_token")
)

Arguments

id_tbl

character(1)
NocoDB table identifier as returned by tbl_id().

name

character(1)
NocoDB column name. NULL means any name.

title

character(1)
NocoDB column title. NULL means any title.

view_type

character(1)
NocoDB view type. One of "default", "form", "gallery", "grid", "kanban", "map", "calendar", or NULL for any type.

view_name

character(1)
NocoDB view name. NULL means any name.

view_title

character(1)
NocoDB view title. NULL means any title.

origin

character(1)
NocoDB server origin.

email

character(1)
E-mail address of the NocoDB user to authenticate with.

password

character(1)
Password of the NocoDB user to authenticate with.

api_token

character(1)
NocoDB API token. Takes precedence over email and password if provided.

Value

A character scalar.

See also

Other functions to manage NocoDB table views: base_ui_acl(), tbl_view_cols(), tbl_view_id(), tbl_views(), update_base_ui_acl(), update_grid_view_col(), update_tbl_view_col()