User contributions for Admin
18 October 2023
- 18:5918:59, 18 October 2023 diff hist +553 N Working Example of Phoenix Built in Form Component Created page with " <source> defmodule AppWeb.PageLive do use AppWeb, :live_view def mount(_params, _session, socket) do {:ok, assign(socket, form: to_form(%{}, as: :my_form))} end def handle_event("save", params, socket) do {:noreply, socket} end def render(assigns) do ~H""" <.form for={@form} phx-change="validate" phx-submit="save"> <.input type="text" field={@form[:username]} /> <.input type="email" field={@form[:email]} />..."
- 11:4511:45, 18 October 2023 diff hist −1 User:Admin No edit summary
- 09:3909:39, 18 October 2023 diff hist +172 User:Admin No edit summary
- 08:5708:57, 18 October 2023 diff hist +1,857 User:Admin No edit summary
- 08:0508:05, 18 October 2023 diff hist +19 User:Admin No edit summary
17 October 2023
- 20:2420:24, 17 October 2023 diff hist +2,377 User:Admin No edit summary
- 13:3113:31, 17 October 2023 diff hist +1,137 User:Admin No edit summary
16 October 2023
- 17:1317:13, 16 October 2023 diff hist +15 How to Use phx-change with a Select Element in Phoenix No edit summary current
- 16:1816:18, 16 October 2023 diff hist −16 How to Use phx-change with a Select Element in Phoenix No edit summary
- 16:1816:18, 16 October 2023 diff hist +896 N How to Use phx-change with a Select Element in Phoenix Created page with " Example: Render <source> defmodule AppWeb.GroupLive do use AppWeb, :live_view alias App.TestBeds alias App.Groups def mount(_params, _session, socket) do {:ok, assign(socket, testbeds: TestBeds.list_testbeds(), groups: Groups.list_groups())} end def handle_event("select-group", params, socket) do IO.inspect params {:noreply, socket} end def render(assigns) do ~H""" <div> TestBed Name</div> <%= for testbed <- @..."
15 October 2023
- 18:5818:58, 15 October 2023 diff hist −5 Understanding Forms and Changesets No edit summary
- 18:1618:16, 15 October 2023 diff hist +93 User:Admin No edit summary
- 03:5103:51, 15 October 2023 diff hist 0 Understanding Forms and Changesets No edit summary
- 03:5003:50, 15 October 2023 diff hist +345 Understanding Forms and Changesets No edit summary
- 03:4603:46, 15 October 2023 diff hist +332 Understanding Forms and Changesets No edit summary
- 03:3403:34, 15 October 2023 diff hist +261 Understanding Forms and Changesets No edit summary
- 03:1703:17, 15 October 2023 diff hist −44 Understanding Forms and Changesets No edit summary
- 03:1403:14, 15 October 2023 diff hist +97 Understanding Forms and Changesets No edit summary
- 03:0803:08, 15 October 2023 diff hist +722 Understanding Forms and Changesets No edit summary
- 02:5602:56, 15 October 2023 diff hist +172 Understanding Forms and Changesets No edit summary
- 02:5202:52, 15 October 2023 diff hist +238 Understanding Forms and Changesets No edit summary
- 01:0901:09, 15 October 2023 diff hist +630 Understanding Forms and Changesets No edit summary
- 00:5900:59, 15 October 2023 diff hist +21 Understanding Forms and Changesets No edit summary
- 00:5900:59, 15 October 2023 diff hist +19 Understanding Forms and Changesets No edit summary
- 00:5800:58, 15 October 2023 diff hist +387 Understanding Forms and Changesets No edit summary
- 00:5200:52, 15 October 2023 diff hist +675 Understanding Forms and Changesets No edit summary
- 00:3900:39, 15 October 2023 diff hist +345 Understanding Forms and Changesets No edit summary
- 00:2500:25, 15 October 2023 diff hist −32 Understanding Forms and Changesets No edit summary
14 October 2023
- 23:2823:28, 14 October 2023 diff hist +72 Understanding Forms and Changesets No edit summary
13 October 2023
- 14:4014:40, 13 October 2023 diff hist −271 Understanding Forms and Changesets No edit summary
- 14:3414:34, 13 October 2023 diff hist +1 Understanding Forms and Changesets No edit summary
- 14:2714:27, 13 October 2023 diff hist +437 Understanding Forms and Changesets No edit summary
- 14:1914:19, 13 October 2023 diff hist +3 Understanding Forms and Changesets No edit summary
- 14:0514:05, 13 October 2023 diff hist 0 Understanding Forms and Changesets No edit summary
- 14:0414:04, 13 October 2023 diff hist +196 Understanding Forms and Changesets No edit summary
- 13:4213:42, 13 October 2023 diff hist +5 Understanding Forms and Changesets No edit summary
- 13:4113:41, 13 October 2023 diff hist +35 Understanding Forms and Changesets No edit summary
- 13:4013:40, 13 October 2023 diff hist +119 Understanding Forms and Changesets No edit summary
- 13:3913:39, 13 October 2023 diff hist 0 Understanding Forms and Changesets No edit summary
- 13:3913:39, 13 October 2023 diff hist +6 Understanding Forms and Changesets No edit summary
- 13:3813:38, 13 October 2023 diff hist +19 Understanding Forms and Changesets No edit summary
- 13:3813:38, 13 October 2023 diff hist +307 Understanding Forms and Changesets No edit summary
- 13:1813:18, 13 October 2023 diff hist 0 Understanding Forms and Changesets No edit summary
- 13:1513:15, 13 October 2023 diff hist +6 How to Create an Empty Phoenix Application No edit summary current
- 13:1513:15, 13 October 2023 diff hist +60 How to Create an Empty Phoenix Application No edit summary
- 13:1313:13, 13 October 2023 diff hist +209 Understanding Forms and Changesets No edit summary
- 13:1113:11, 13 October 2023 diff hist −105 How to Create an Empty Phoenix Application No edit summary
- 13:1013:10, 13 October 2023 diff hist +2,194 N How to Create an Empty Phoenix Application Created page with "'''Before You Begin''' {{Phoenix-Installation-Required}} ==What you will do== * Create a new Phoenix application instance ==Create the App== Select a directory, open a terminal and type: <syntaxhighlight> mix phx.new app </syntaxhighlight> This creates a new phoenix application named "app". The terminal will prompt you to download dependencies, select Y for yes. When dependency downloading is complete, you have the choice to connect your app to a database usin..."
- 13:0413:04, 13 October 2023 diff hist +65 N Forms and Event Handlers in Elixir Phoenix Admin moved page Forms and Event Handlers in Elixir Phoenix to Forms and Event Handlers in Elixir Phoenix Liveview current Tag: New redirect
- 13:0413:04, 13 October 2023 diff hist 0 m Forms and Event Handlers in Elixir Phoenix Liveview Admin moved page Forms and Event Handlers in Elixir Phoenix to Forms and Event Handlers in Elixir Phoenix Liveview current