User contributions for Admin
29 May 2023
- 06:2106:21, 29 May 2023 diff hist +40 How to Add a Field to a Generated Table Retroactively No edit summary
- 05:3505:35, 29 May 2023 diff hist +77 How to Add a Field to a Generated Table Retroactively No edit summary
- 05:3305:33, 29 May 2023 diff hist +406 How to Add a Field to a Generated Table Retroactively No edit summary
- 05:2705:27, 29 May 2023 diff hist +145 How to Add a Field to a Generated Table Retroactively No edit summary
- 04:4704:47, 29 May 2023 diff hist 0 How to Add a Field to a Generated Table Retroactively No edit summary
- 04:4704:47, 29 May 2023 diff hist +15 N How to Add a Field to a Generated Table Retroactively Created page with "{{In_Progress}}"
- 04:3104:31, 29 May 2023 diff hist +59 How to Iterate and Render Database Data in Phoenix LiveView No edit summary
- 04:1804:18, 29 May 2023 diff hist −2 How to Iterate and Render Database Data in Phoenix LiveView No edit summary
- 04:1804:18, 29 May 2023 diff hist −38 How to Iterate and Render Database Data in Phoenix LiveView No edit summary
- 02:3602:36, 29 May 2023 diff hist +250 How to Iterate and Render Database Data in Phoenix LiveView No edit summary
28 May 2023
- 09:3609:36, 28 May 2023 diff hist +284 How to Add New Item to App Made Using the phx.gen.html Generator No edit summary
- 09:3009:30, 28 May 2023 diff hist +379 N How to Add New Item to App Made Using the phx.gen.html Generator Created page with "This document explains how to retroactively add a new item to your app when your data was created using the phx.gen.html generator. First, you need data that is generated. An example is: <source> mix phx.gen.html Testbeds Testbed testbeds name:string </source> After the code is generated, the items are viewable in your app going to: <source> localhost://testbeds </source>"
- 07:0507:05, 28 May 2023 diff hist +48 User:Admin No edit summary
7 May 2023
- 06:0906:09, 7 May 2023 diff hist +305 How to Create a Basic PubSub Application No edit summary
- 06:0606:06, 7 May 2023 diff hist +15 N How to Create a Basic PubSub Application Created page with "{{In progress}}"
- 05:3605:36, 7 May 2023 diff hist +12 MediaWiki:Common.css No edit summary
1 May 2023
- 03:1903:19, 1 May 2023 diff hist +44 User:Admin No edit summary
7 April 2023
- 12:2412:24, 7 April 2023 diff hist +1 User:Admin No edit summary
- 12:0612:06, 7 April 2023 diff hist +118 User:Admin No edit summary
6 April 2023
- 12:2512:25, 6 April 2023 diff hist +3 How to Create Nested LiveView Components No edit summary
- 12:2412:24, 6 April 2023 diff hist −1 How to Create Nested LiveView Components No edit summary
- 12:2412:24, 6 April 2023 diff hist +1 How to Create Nested LiveView Components No edit summary
- 12:2312:23, 6 April 2023 diff hist +2 How to Create Nested LiveView Components No edit summary
- 12:2312:23, 6 April 2023 diff hist +3 How to Create Nested LiveView Components No edit summary
- 12:1712:17, 6 April 2023 diff hist +501 N How to Create Nested LiveView Components Created page with "This example demonstrates a nested LiveView component. <source> defmodule AppxWeb.SandboxLive do use AppxWeb, :live_view import MyComponent def mount(_params, _session, socket) do {:ok, socket} end def render(assigns) do ~H""" Hello World! YAY <MyComponent.greet name="Jane" /> """ end end </source> <source> defmodule MyComponent do use Phoenix.Component def greet(assigns) do ~H""" <p>Hello, <%= @name %>!</p>..."
- 11:5411:54, 6 April 2023 diff hist +57 How to Iterate and Render Database Data in Phoenix LiveView No edit summary
3 April 2023
- 12:4012:40, 3 April 2023 diff hist +62 User:Admin No edit summary
- 12:3612:36, 3 April 2023 diff hist +197 User:Admin No edit summary
2 April 2023
- 20:3220:32, 2 April 2023 diff hist +106 How to Use JavaScript in a Phoenix LiveView No edit summary
- 20:3120:31, 2 April 2023 diff hist +8 How to Use JavaScript in a Phoenix LiveView No edit summary
- 19:5219:52, 2 April 2023 diff hist +17 How to Use JavaScript in a Phoenix LiveView No edit summary
- 19:3519:35, 2 April 2023 diff hist +62 How to Use JavaScript in a Phoenix LiveView No edit summary
- 19:3219:32, 2 April 2023 diff hist +308 How to Use JavaScript in a Phoenix LiveView No edit summary
- 19:2619:26, 2 April 2023 diff hist −6 How to Use JavaScript in a Phoenix LiveView No edit summary
- 19:2619:26, 2 April 2023 diff hist +59 How to Use JavaScript in a Phoenix LiveView No edit summary
- 19:2119:21, 2 April 2023 diff hist +204 How to Use JavaScript in a Phoenix LiveView No edit summary
- 19:1819:18, 2 April 2023 diff hist −16 How to Use JavaScript in a Phoenix LiveView No edit summary
- 19:1719:17, 2 April 2023 diff hist +195 How to Use JavaScript in a Phoenix LiveView No edit summary
- 19:1619:16, 2 April 2023 diff hist +21 How to Use JavaScript in a Phoenix LiveView No edit summary
- 07:3007:30, 2 April 2023 diff hist −1 How to Use JavaScript in a Phoenix LiveView No edit summary
- 07:2907:29, 2 April 2023 diff hist +24 How to Use JavaScript in a Phoenix LiveView No edit summary
- 07:2907:29, 2 April 2023 diff hist −3 How to Use JavaScript in a Phoenix LiveView No edit summary
- 07:2807:28, 2 April 2023 diff hist +18 How to Use JavaScript in a Phoenix LiveView No edit summary
- 07:2707:27, 2 April 2023 diff hist −7 How to Use JavaScript in a Phoenix LiveView No edit summary
- 07:2607:26, 2 April 2023 diff hist +17 How to Use JavaScript in a Phoenix LiveView No edit summary
- 07:2507:25, 2 April 2023 diff hist +866 N How to Use JavaScript in a Phoenix LiveView Created page with "You can integrate JavaScript libraries with Phoenix LiveView. The first step is to create a LiveView. The Next Step is to create a DOM element that has an assigned phx-hook property. <source> <div id="box" phx-hook = "Box">SOME TEXT</div> </source> In <pre>assets/js/app.js </pre> you will see this code: <source> let liveSocket = new LiveSocket("/live", Socket, {params: {_csrf_token: csrfToken}}) </source> You change it to use a "hooks" property, the hooks..."
1 April 2023
- 18:1218:12, 1 April 2023 diff hist +22 User:Admin No edit summary
27 March 2023
- 11:3911:39, 27 March 2023 diff hist +1,184 How to Create Database Seed Data in Elixir Phoenix No edit summary current
- 11:1711:17, 27 March 2023 diff hist +251 N How to Create Database Seed Data in Elixir Phoenix Created page with "{{In progress}} '''Before you Begin''' {{Phoenix-Installation-Required}} This article demonstrates how to create PostgreSQL table data in Elixir Phoenix for you to experiment with. mix phx.gen.context Todos Todo todos title:string done:boolean"
- 11:1711:17, 27 March 2023 diff hist +242 How to Create a Basic Elixir Phoenix LiveView Application No edit summary current