User contributions for Admin
6 April 2023
- 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
- 10:5910:59, 27 March 2023 diff hist +71 User:Admin No edit summary
- 10:5710:57, 27 March 2023 diff hist +15 User:Admin No edit summary
- 10:5710:57, 27 March 2023 diff hist +329 N User:Admin Created page with "How to Create Database Seed Data. How to Work with Database Data via Basic Commands and Custom Change sets. How to Render Database Data to LiveView (via Context Commands). How to Create a Chat using PubSub. How to Create Event Handlers in LiveView How to Create a Dynamic Route from Scratch. How to Use Elixirs Template language"
- 10:4910:49, 27 March 2023 diff hist +15 How to Iterate and Render Database Data in Phoenix LiveView No edit summary
- 10:4510:45, 27 March 2023 diff hist +39 N Template:In progress Created page with "<big>This page is ''in progress''</big>" current
- 10:4210:42, 27 March 2023 diff hist +493 N How to Iterate and Render Database Data in Phoenix LiveView Created page with " ==Example== This code references a PostgreSQL table named TestBeds. <source> use AppWeb, :live_view alias App.TestBeds defmodule AppWeb.PageLive do use AppWeb, :live_view alias App.TestBeds def mount(_params, _session, socket) do {:ok, assign(socket, testbeds: TestBeds.list_testbeds())} end def render(assigns) do ~H""" <%= for testbed <- assigns.testbeds do %> <div><%= testbed.name %></div> <% end %> """..."
26 March 2023
- 06:2806:28, 26 March 2023 diff hist 0 How to Create a Basic Elixir Phoenix LiveView Application No edit summary
- 06:2706:27, 26 March 2023 diff hist +63 How to Create a Basic Elixir Phoenix LiveView Application No edit summary
- 06:2506:25, 26 March 2023 diff hist +588 How to Render Dynamic Variables in a Phoenix LiveView No edit summary current
- 06:1806:18, 26 March 2023 diff hist +24 How to Render Dynamic Variables in a Phoenix LiveView No edit summary
- 06:1706:17, 26 March 2023 diff hist +173 How to Render Dynamic Variables in a Phoenix LiveView No edit summary
- 06:1406:14, 26 March 2023 diff hist +34 How to Render Dynamic Variables in a Phoenix LiveView No edit summary
- 06:1306:13, 26 March 2023 diff hist +264 N How to Render Dynamic Variables in a Phoenix LiveView Created page with " <source> defmodule AppWeb.PageLive do use AppWeb, :live_view def mount(_params, _session, socket) do {:ok, assign(socket, greeting: "Hello World")} end def render(assigns) do ~H""" <%= assigns.greeting %> """ end end </source>"
- 06:0606:06, 26 March 2023 diff hist +3,604 N How to Create a Basic Elixir Phoenix LiveView Application Created page with "'''Before You Begin''' {{Phoenix-Installation-Required}} ==What you will do== * Create a new Phoenix application instance * Create a route that points to a LiveView Page * Create a basic LiveView page and render text to the browser that says "Hello World". ==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..."
- 06:0206:02, 26 March 2023 diff hist +312 N How to Sort a List of Maps Created page with "==Basic Example== <syntaxhighlight> users = [ %{name: "Bob"}, %{name: "Zod"}, %{name: "Maureen"} ] Enum.sort_by(users, &(&1.name), :desc)) </syntaxhighlight> '''Reference''' [https://stackoverflow.com/questions/75719213/phoenix-liveview-basic-sorting-of-data-for-render/75719659#75719659|Stackoverflow]" current
- 05:5305:53, 26 March 2023 diff hist +28 Welcome to ElixirBlocks No edit summary
25 March 2023
- 23:2423:24, 25 March 2023 diff hist 0 Template:Phoenix-Installation-Required No edit summary current
- 23:2423:24, 25 March 2023 diff hist +306 N Template:Phoenix-Installation-Required Created page with " '''Installing Phoenix''' This article assumes that you have installed the Phoenix web framework and all dependencies correctly and without errors. If you have not installed the Phoenix web framework please view the [https://hexdocs.pm/phoenix/installation.html#content|official documentation here] <hr>"
12 March 2023
- 04:0804:08, 12 March 2023 diff hist +13 Working with time No edit summary
- 04:0704:07, 12 March 2023 diff hist +102 Working with time No edit summary
- 04:0604:06, 12 March 2023 diff hist +79 Working with time No edit summary
- 04:0504:05, 12 March 2023 diff hist +142 Working with time No edit summary
- 03:5203:52, 12 March 2023 diff hist +38 Working with time No edit summary
- 03:5103:51, 12 March 2023 diff hist +112 Working with time No edit summary
- 03:0903:09, 12 March 2023 diff hist +66 N Working with time Created page with " Get time: <syntaxhighlight> DateTime.utc_now() </syntaxhighlight>"