Skip to contents

Updates the metadata of the specified grid view column on a NocoDB server via its PATCH /api/v2/meta/grid-columns/{id_view_col} API endpoint.

Usage

update_grid_view_col(
  id_view_col,
  order = 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_view_col

character(1)
NocoDB table view column identifier as returned by tbl_view_col_id().

order

integer(1)
A number to assign as the grid view columns's UI order "weight".

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

id_view_col, invisibly.

See also

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