Marmanvii
Hello, I’m trying to make a simple multiple selection in an appointment form, so users don’t have to search the ID for a medic, normally I searched a lot on how to implement a multiple_select and carefully followed everything on many forums, but no one gets this error:
no function clause matching in Phoenix.HTML.Tag.dasherize/1
My controller is as follows:
defmodule Medica.AppointmentuController do
use Medica.Web, :controller
alias Medica.Appointment
alias Medica.Medico
def index(conn, _params) do
appointments = Repo.all(Appointment)
render(conn, "index.html", appointments: appointments)
end
def new(conn, _params) do
changeset = Appointment.changeset(%Appointment{})
medico = Repo.all from u in Medico, select: {u.id, u.nombre}
render(conn, "new.html", medico: medico, changeset: changeset)
end
...
end
New.html.eex
<h2 align="center">Modo Paciente</h2>
<h2>Reservar Nueva Hora</h2>
<%= render "forma.html", changeset: @changeset,
action: appointmentu_path(@conn, :create),
medico: @medico %>
and form.html.eex:
<%= form_for @changeset, @action,@medico, fn f -> %>
<%= if @changeset.action do %>
<div class="alert alert-danger">
<p>Ingrese los datos correctamente o puede que la cita ya esté tomada.</p>
</div>
<% end %>
<div class="form-group">
<%= label f, :rut_paciente, class: "control-label" %>
<%= text_input f, :rut_paciente, class: "form-control" %>
<%= error_tag f, :rut_paciente %>
</div>
<div class="form-group">
<%= label f, :fecha, class: "control-label" %>
<%= date_input f, :fecha, class: "form-control" %>
<%= error_tag f, :fecha %>
</div>
<div class="form-group">
<%= label f, :id_medico, class: "control-label" %>
<%= multiple_select f, :medico, Enum.map(@medico, &{&1.id, &1.nombre}) %>
<%= error_tag f, :id_medico %>
</div>
<div class="form-group">
<%= label f, :bloque, class: "control-label" %>
<%= number_input f, :bloque, min: 1, class: "form-control" %>
<%= error_tag f, :bloque %>
</div>
<div class="form-group">
<%= label f, :descripcion, class: "control-label" %>
<%= text_input f, :descripcion, class: "form-control" %>
<%= error_tag f, :descripcion %>
</div>
<div class="form-group" align="center">
<%= submit "✔", class: "btn btn-primary" %>
<a class="btn btn-danger" href="/" role="button">✖</a>
</div>
<% end %>
My models:
schema "appointments" do
field :rut_paciente, :string
field :fecha, :date
field :id_medico, :integer
field :bloque, :integer
field :descripcion, :string
timestamps()
end
schema "medico" do
field :nombre, :string
field :apellido, :string
field :especialidad, :string
end
Screen for the error:
Trending in Questions
I having some trouble figuring out if I have set myself too strict of standards for my production server. Currently I can handle 75% of r...
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
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
Hi everyone,
I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding.
I sta...
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
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
I’m new to elixir and just tried to install the elixirLS extension for VScode(ium) and it is throwing some errors that I would like help ...
New
Other Trending Topics
Edit: 2026 May 15 - This post is archived.
Mob is alive!!
Main docs: mob v0.7.11 — Documentation
A bit of explanation for the slightly c...
New
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
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
- #elixirconf-eu
- #api
- #forms
- #metaprogramming
- #hex











Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
kokolegorille
It’s not that easy without line numbers…
But my guess is here
You are sending integer to multiple_select instead of atom or binary. Try to replace with
Marmanvii
First time using this forum, sorry about the lines. I tried replacing with your suggestion, but unfortunately it keeps giving me the same error.
kokolegorille
No need to be sorry, I just meant it is not an obvious error
Does it works if You remove this?
Marmanvii
It doesn’t, I guess it has something to do with the query?
Marmanvii
Also, if I do
I get,
no function clause matching in Keyword.delete_key/3
Although in both cases, it does get the values I want, but with these errors.
kokolegorille
Maybe You can show Medico schema file with the validation part.
Marmanvii
This one right?
kokolegorille
Yes, but what version of Phoenix do You use?
model is outdated now
kokolegorille
With Phoenix 1.3, it looks like this
Marmanvii
1.3.2, but decided to use:
mix phoenix.new X
instead of
mix phx.new X
this created the new model, but as requested we needed to use the old model.