-
Notifications
You must be signed in to change notification settings - Fork 1
19 inline menu editor #34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
- Add check_column_type() to validate action types
- Update update_col_list_with_classes()
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@olajoke Thanks:
- Can we add an example in the vignette to illustrate how this works?
- Ensure we have minimum test coverage for this.
#' @param column_type Column type. By default, the column type is inferred from the data type of the column. | ||
#' There are 7 possible options: | ||
#' \itemize{ | ||
#' \item \code{"text"} for text columns. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can use markdown syntax in roxygen2. It's easier than having \itemize ...
Instead it can be:
#' There are 7 possible options:
#' - Option 1
#' - Option 2
#' \item \code{"image"} for image columns. | ||
#' \item \code{"radio"} for radio columns. | ||
#' \item \code{"multilinetext"} for multiline text in columns. | ||
#' \item \code{"multilinetext"} for multiline text columns. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using markdown, \code{} becomes `code`
- `"menu"`: For dropdown menu selection columns | ||
|
||
The `column_type` parameter is optional. If it is not specified, the column type will be inferred from the data type. | ||
If `column_type` parameter is optional. If it is not specified, the column type will be inferred from the data type. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Typo?
No description provided.