We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Backpex.Field
Backpex.Filter
Backpex.Metric
Backpex.LiveResource
see also nimble_options
nimble_options
defmodule Backpex.Fields.Date do # ... def options() do [ format: [ type: :string, default: "%Y-%m-%d" ], foo: [ type: :non_neg_integer, required: true ] ] end end
config :backpe, Backpex.Fields.Date, format: "%d.%m.%Y" config: :backpex, Backpex.Fields.Upload, max_file_size: 42_000_000
The familiar way:
def fields do [ %{ module: Backpex.Fields.Date, label: "Created At", name: :created_at, format: "%d.%m.%Y" } ] end
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
Todos
Backpex.Field
Backpex.Filter
Backpex.Metric
Backpex.LiveResource
Concept
Module Level (package defaults)
see also
nimble_options
Config Level (application config)
Resource Level (application domain)
The familiar way:
The text was updated successfully, but these errors were encountered: