umbra
Im having a problem here… as the title suggest, my error_tag isnt working, its simply not showing the error message:
new.html.eex
<%= form_for @changeset, Routes.category_path(@conn, :create), fn f -> %>
<label for="category_name" class="form-label">Nome da Categoria</label>
<%= text_input f, :name, class: "form-control", placeholder: "Nome" %>
<%= error_tag f, :name %>
<%= submit "Cadastrar", class: "btn btn-primary my-3" %>
<% end %>
controller
def create(conn, %{"category" => category}) do
case Records.category_create(category) do
{:ok, _inserted_category} ->
conn
|> put_flash(:info, "Categoria criada!")
|> redirect(to: Routes.category_path(conn, :index))
{:error, changeset} ->
conn
|> put_flash(:error, "Erro ao criar categoria!")
|> render("new.html", changeset: changeset)
end
end
context
defdelegate category_changeset(category, params), to: Category, as: :changeset
defdelegate category_create(params), to: Category, as: :create
changeset and repo action
def changeset(%Category{} = category, params \\ %{}) do
category
|> cast(params, [:name])
|> validate_required([:name])
|> validate_length(:name, min: 3, max: 15)
|> validate_format(:name, ~r{\S})
|> unique_constraint(:name)
end
def create(params) do
%Category{}
|> changeset(params)
|> Repo.insert()
end
inspected changeset
Its working properly, the error is there!
[debug] Processing with ConfinWeb.CategoryController.index/2
Parameters: %{}
Pipelines: [:browser]
[debug] QUERY OK source="categories" db=15.0ms idle=407.0ms
SELECT c0."id", c0."name" FROM "categories" AS c0 []
#Ecto.Changeset<
action: :insert,
changes: %{},
errors: [name: {"can't be blank", [validation: :required]}],
data: #Confin.Records.Category<>,
valid?: false
>
HTML generated
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming











Showing Posts 1 to 6- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
lleger
Is this in a LiveView? It looks like it because of the “invalid-feedback” class, which is added by LiveView when the user didn’t change the input. In your CSS that class probably has
display: noneor similar. This is to avoid confusing the user by adding errors to fields they haven’t changed.Docs here: Form bindings — Phoenix LiveView v1.2.5
umbra
Its not LiveView
This is supposed to happen only with LV?
lleger
The default
error_tagimplementation adds theinvalid-feedbackclass automatically. See here: phoenix/installer/templates/phx_web/views/error_helpers.ex at a55f4859aa028e7395b5b84ce0481ac4e5efb659 · phoenixframework/phoenix · GitHubIf you’re using that same function (you didn’t paste the code, so I’m not sure) then that class is being added.
Since it’s in the HTML and not showing, it’s possible you have some CSS that’s adding
display: none. The defaultapp.cssPhoenix generates has this (phoenix/installer/templates/phx_assets/app.css at a55f4859aa028e7395b5b84ce0481ac4e5efb659 · phoenixframework/phoenix · GitHub) but that’s probably not activating since it doesn’t also have thephx-no-feedbackclass.Which is what LV is supposed to do, as the linked docs explain. But if this isn’t a LV, then
phx-no-feedbackisn’t getting applied, so not sure. But I’d inspect the element in the browser to see why it’s being hidden.umbra
Ok, I think that I found the problem!
Im using Bootstrap 5, and happens that it uses a class named
invalid-feedbacktoo.Thanks! I dindt knew that Phoenix uses a class with the same name.
curioustolearn
I am having this same issue with bootstrap - no errors are being displayed. I am using Phoenix Liveview. For form fields that have not yet received any input I see both
phx-no-feedbackandinvalid-feedbackclasses. As the fields receive input, thephx-no-feedbackis removed from them. However, theinvalid-feedbackclass remains. Am I not seeing the errors because of this class? How do I make sure that the errors are displayed? I would really appreciate some help on this.Update: I also could not find where Phoenix sets the styling for
phx-no-feedbackandinvalid-feedbackclasses.Thank you!
aywen
This is probably way too late, but in case someone else stumbles across this thread as well.
Possible causes of error tag not showing:
invalid-feedbackclass… you might want to comment it out while debugging to make it easier. (The class will typically be defined in .css file in/assets/css/app.css):nilor :ignore, error will not be shown. (See a note on errors in Phoenix.HTML.Form). If this is the case you can either use# {_reply, changeset} = Changeset.apply_action(changeset, :insert)or change the action field manually e.g.{:noreply, assign(socket, changeset: %{changeset | action: :insert})}.`
Also, I’ve found a related post on the topic.