-
Notifications
You must be signed in to change notification settings - Fork 0
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
Refactor/modularize parameter datasets #188
base: main
Are you sure you want to change the base?
Conversation
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.
Looks good, please add blank lines to the files.
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.
Hey thanks for this @m-kolomanski. The modularization was perfect, I just noticed some little problems with the download of the datasets, but I think this was my fault when I implemented #141!
They are small changes but I will leave it to your consideration. We can solve them now in this pr or open a new issue.
options = list( | ||
scrollX = TRUE, | ||
scrollY = TRUE, | ||
lengthMenu = list(c(10, 25, -1), c("10", "25", "All")), |
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.
suggestion: allow user to copy/download all rows with a whole display of the dataset
(note: menu won't work & is not needed anyways)
lengthMenu = list(c(10, 25, -1), c("10", "25", "All")), | |
pageLength = -1, |
extensions = c("FixedHeader", "Buttons"), | ||
options = list( | ||
scrollX = TRUE, | ||
scrollY = TRUE, |
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.
suggestion: allow user to copy/download all rows with a whole display of the dataset
scrollY = TRUE, | |
scrollY = TRUE, | |
pageLength = -1, |
|
||
output$adpp_dataset <- DT::renderDataTable({ | ||
DT::datatable( | ||
data = CDISC()$adpp, |
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.
suggestion: do not display row names
data = CDISC()$adpp, | |
data = CDISC()$adpp, | |
rownames = FALSE, |
Issue
Addresses #144, #63
Description
bslib
How to test
Run the application, check if everything runs smoothly.
Contributor checklist