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
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Kia ora,
We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
I’ve followed the Phoenix LiveView file upload code here Uploads — Phoenix LiveView v1.0.0-rc.7 and so far everything works just fine wit...
New
I’m using an Umbrella project for a Phoenix application, and I want to have one Ecto Repo and one PostgreSQL database shared by all apps....
New
Hello,
I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter).
The diffic...
New
Other Trending Topics
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
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Latest Phoenix Threads
Latest on Elixir Forum
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #phoenix_html
- #ai
- #iex
- #graphql
- #elixirconf-us
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming











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.