Coder Social home page Coder Social logo

Comments (6)

warcayac avatar warcayac commented on June 18, 2024 1

I don't think so because I previously tried (like as the reference video ) with "Hx-Trigger" and it didn't work. Instead of using hx-on I've tried hyperscript and it is working as expected.

from htmx.

andryyy avatar andryyy commented on June 18, 2024 1

I think the problem with hx-on is that it's listening on the element it is placed on. You'd need something like hx-on-from-body. :)

from htmx.

warcayac avatar warcayac commented on June 18, 2024 1

I've tested my code again with some variants and here my observations:

  • the formats hx-on--customevent= or hx-on-customevent= are definitely not working
  • the format hx-on="customevent: is working,
  • the key "hx-trigger" passed as header is insensitive-case

The strange here is when I posted this issue, the format hx-on="customevent: was not working but it is now @ _ @
however that format will be deprecated as documentation, so it is not really a solution. Moreover it seems hx-on is very limited regarding the number of operations I can do, hyperscript is more flexible in this aspect.

from htmx.

DioLps avatar DioLps commented on June 18, 2024

Most likely you had Typo error, seems like htmx is case sensitive went it comes to headers, so instead of hx-trigger, you use HX-Trigger it will work fine.

Eg:

`import { Elysia } from "elysia";
import { html } from '@elysiajs/html'

const app = new Elysia()
app
.use(html())
.get('/', () => {
return '

Test init

target here
<script src="https://unpkg.com/[email protected]"></script>'
})
.get('/binding', ({ set }) => {
set.headers['HX-Trigger'] = 'custom-event'

return '<span>Msg from server</span>'

})
.listen(3000);

console.log(
🦊 Elysia is running at http://${app.server?.hostname}:${app.server?.port}
);
`

from htmx.

DioLps avatar DioLps commented on June 18, 2024

Well I'm glad that you find another solution. But the example above it's working as well, maybe you use the "Hx-Trigger" with 'x' in lower case and it caused the issue? Not sure to be fair.

:)

from htmx.

DioLps avatar DioLps commented on June 18, 2024

Nice, good job!

from htmx.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.