itisfilipe
I am trying to use two nested inputs_for with no success. Essentially, I have this (abbreviated for simplicity):
# CalendarApp.Calendars.Calendar
schema "calendars" do
...
# In the migration I have "add :working_hours, :map"
embeds_many :working_hours, WorkingHour, on_replace: :delete
end
# CalendarApp.Calendars.WorkingHour
embedded_schema do
...
embeds_many :time_intervals, TimeInterval, on_replace: :delete
end
# CalendarApp.Calendars.TimeInterval
embedded_schema do
...
# no more embeds
end
My object
%CalendarApp.Calendars.Calendar{
__meta__: #Ecto.Schema.Metadata<:loaded, "calendars">,
id: 1,
working_hours: [
%CalendarApp.Calendars.WorkingHour{
id: "c8140693-be33-4f50-a087-653ce92fa3be",
weekday: :Sunday,
enabled: false,
time_intervals: [
%CalendarApp.Calendars.TimeInterval{
id: "0d31837a-d295-4d7b-984f-edfe18858f70",
start_time: ~T[08:00:00],
end_time: ~T[12:00:00]
},
%CalendarApp.Calendars.TimeInterval{
id: "e11b03a4-75be-4067-b477-733ebea6b31c",
start_time: ~T[13:00:00],
end_time: ~T[18:00:00]
}
]
},
%CalendarApp.Calendars.WorkingHour{
id: "a5a70b7e-577a-42b0-a2f7-4d396c3cd3ad",
weekday: :Monday,
enabled: true,
time_intervals: [
%CalendarApp.Calendars.TimeInterval{
id: "865aeea2-d234-47c1-aa1d-b8655c2909f7",
start_time: ~T[08:00:00],
end_time: ~T[12:00:00]
},
%CalendarApp.Calendars.TimeInterval{
id: "f80e3863-b801-4964-8c71-f7fca7d567ba",
start_time: ~T[13:00:00],
end_time: ~T[18:00:00]
}
]
},
...
]
}
how I am trying to present this data
<%= for whf <- inputs_for(f, :working_hours) do %>
<li class="pb-4 flex items-center justify-between">
<%= hidden_inputs_for(whf) %>
<%= label whf, :weekday, class: "text-base font-medium text-gray-900" do %>
<%= whf.data.weekday %>
<% end %>
<%= for intf <- inputs_for(whf, :time_intervals) do %>
<%= hidden_inputs_for(intf) %>
<% time_input intf, :start_time %>
<% time_input intf, :end_time %>
<% end %>
<%= error_tag whf, :weekday %>
</li>
<% end %>
Just the labels and the hidden fields are being rendered
<ul role="list">
<li class="pb-4 flex items-center justify-between">
<input id="calendar_working_hours_0_id" name="calendar[working_hours][0][id]" type="hidden" value="c8140693-be33-4f50-a087-653ce92fa3be">
<label class="text-base font-medium text-gray-900" for="calendar_working_hours_0_weekday">
Sunday
</label>
<input id="calendar_working_hours_0_time_intervals_0_id" name="calendar[working_hours][0][time_intervals][0][id]" type="hidden" value="0d31837a-d295-4d7b-984f-edfe18858f70">
<input id="calendar_working_hours_0_time_intervals_1_id" name="calendar[working_hours][0][time_intervals][1][id]" type="hidden" value="e11b03a4-75be-4067-b477-733ebea6b31c">
</li>
<li class="pb-4 flex items-center justify-between">
<input id="calendar_working_hours_1_id" name="calendar[working_hours][1][id]" type="hidden" value="a5a70b7e-577a-42b0-a2f7-4d396c3cd3ad">
<label class="text-base font-medium text-gray-900" for="calendar_working_hours_1_weekday">
Monday
</label>
<input id="calendar_working_hours_1_time_intervals_0_id" name="calendar[working_hours][1][time_intervals][0][id]" type="hidden" value="865aeea2-d234-47c1-aa1d-b8655c2909f7">
<input id="calendar_working_hours_1_time_intervals_1_id" name="calendar[working_hours][1][time_intervals][1][id]" type="hidden" value="f80e3863-b801-4964-8c71-f7fca7d567ba">
</li>
...
</ul>
I’ve tried many different fields and structures for this form but without success. Does anyone know if this is even possible?
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!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
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
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
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
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
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
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
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 2- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
woylie
This should be
itisfilipe
Oh, I can’t believe I spent the last two days trying to fix it and it was a silly typo
. Thank you for the help, it worked!