Florian Arens
Florian Arens
In preparation of the `mix igniter.install backpex` task, I improved and reordered the installation guide. See https://github.com/naymspace/backpex/pull/957#issuecomment-2826815566
- Move `class` to `fieldset` element and remove wrapping `div` - Use `legend` element for label
If you have a certain number of item action in your resource, you might want to list them in a dropdown so that the table looks clean. There should be...
If you want to add a form field to select multiple fields, Backpex provides `Backpex.Fields.MultiSelect`. As this field comes with a dropdown and search functionality, it might not be suitable...
With this PR we support additional options for our custom `live_resources/3` macro that are passed to the `live/4` macro. See https://hexdocs.pm/phoenix_live_view/Phoenix.LiveView.Router.html#live/4-options
Currently, `Backpex.Fields.InlineCRUD` only supports inputs of type `textarea` and `text`. The goal is to support more (Backpex) fields. We can start with simple fields, like `Backpex.Fields.URL` and add more advanced...
If you sort or search enum fields (e.g., user role) and have multiple languages in your app, you'll run into some problems, as the ordering and searching does not take...
You can pass additional classes to some Backpex components. As they often come with certain defaults, we need a way to properly merge overriding and default classes. If additional classes...
Fields like `Backpex.Fields.MultiSelect` and `Backpex.Fields.HasMany` come with a multi select. This multi select uses a daisyUI dropdown under the hood that contains a list of checkboxes. See https://github.com/naymspace/backpex/blob/0.11.0/lib/backpex/html/form.ex#L246 The Backpex...
Backpex provides hooks that are called after changes are persisted to the database: https://hexdocs.pm/backpex/hooks.html We could also add Hooks that are called before changes are persisted. - `on_item_creating` - `on_item_deleting`...