Skip to content
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

Add way to pass configuration to Selectize and noUiSlider widgets #1120

Merged
merged 10 commits into from
Jan 25, 2024

Conversation

mikmart
Copy link
Contributor

@mikmart mikmart commented Jan 24, 2024

Closes #1072, closes #1083.

This PR adds support to use the filter parameter in datatable() to pass configuration directly to filter widget initialization in JavaScript. This is done by specifying a $settings element in the list form of the filter parameter, which itself is a named list with $select and $slider elements for select and slider widget configuration, respectively.

Example usage:

DT::datatable(
  data.frame(
    foo = factor(LETTERS, levels = sample(LETTERS)),
    bar = rnorm(seq_along(LETTERS)) |> round(3)
  ),
  filter = list(
    position = "top",
    settings = list(
      select = list(
        sortField = list(field = "text", direction = "desc")
      ),
      slider = list(
        orientation = "vertical"
      )
    )
  )
)

Copy link
Member

@yihui yihui left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great! Thank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
2 participants