Skip to content

Instantly share code, notes, and snippets.

@AndyObtiva
Last active July 11, 2025 19:50
Show Gist options
  • Select an option

  • Save AndyObtiva/f30c610762ec26420702d483dc410482 to your computer and use it in GitHub Desktop.

Select an option

Save AndyObtiva/f30c610762ec26420702d483dc410482 to your computer and use it in GitHub Desktop.
...
markup {
div {
...
multi_checkbox_dropdown(
values: SomePresenter::STATUS_FILTER_TYPES,
display_values: SomePresenter::STATUS_FILTER_TYPES.map(&:capitalize),
locale: I18n.locale,
width: 190,
translations: {
en: {select: 'Filter by Status',
fr: {select: 'Filtrer par statut'},
es: {select: 'Filtrar por estado'},
},
) {
selected_values <=> [@some_presenter, :status_filters]
}
...
}
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment