Vincent
Vincent
Hey, yep that's something we totally forgot and left behind when releasing htmx 2. Extensions have moved to [a separate repository](https://github.com/bigskysoftware/htmx-extensions), and this test suite should also go there. Extensions...
Ok that's interesting So, we have the following function in htmx: https://github.com/bigskysoftware/htmx/blob/3830fa7b2c2d24c47473f26816609a25b4b69d92/src/htmx.js#L486-L491 However, it turns out that calling `form.something` on a form element where any of its inputs has the...
To be honest, I discovered this `form.name` syntax while investigating on the issue you posted, I didn't know about this at all either 😆 I totally understand the frustration there,...
> this could be a breaking change if someone was depending on this broken fallback behaviour It could but honestly it looks really convoluted to me, why would you want...
Does a [`paste` event](https://developer.mozilla.org/en-US/docs/Web/API/Element/paste_event) work here? This might handle both `auxclick` and other pasting inputs (ctrl+v, right click + paste in context menu...)
Hey, what you described is correct ; htmx will only care about the first extension that can process parameters See https://github.com/bigskysoftware/htmx/blob/90a91a60e0fcd2d7c42e04c615177cba89c33151/src/htmx.js#L3735-L3741 With the current implementation, `encodedParameters` wouldn't be `null` anymore...
I would personally be in favor of making the internal API more flexible to let people achieve what they want with it. ~~From what I see, this can likely be...
> Indeed I would enjoy this to work with any HTMX attribute. Maybe I want different buttons to post to different endpoints, or swap out different targets. It feels intuitive...
Hey, indeed those tests make requests to external URLs and it's unfortunately common to have timeout issues with those... As it's going to depend on your internet connection for that...