All public logs

Jump to: navigation, search

Combined display of all available logs of ElixirBlocks. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 07:25, 2 April 2023 Admin talk contribs created page 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...")