Coder Social home page Coder Social logo

Comments (5)

cbmeeks avatar cbmeeks commented on June 24, 2024 1

Oh my word I looked forever and couldn't find that.

Good news is that I almost had that myself but messed up the "set @value to result" part..

Thanks!!!

from _hyperscript.

WedersonCD avatar WedersonCD commented on June 24, 2024

You could do something like this:
<input type="text" _=" init js return new URLSearchParams(window.location.search).get('parameter') end set @value to result end "/>

from _hyperscript.

cbmeeks avatar cbmeeks commented on June 24, 2024

It seems this doesn't work with a select box.

                    <select class="w-80" id="documentStandard" name="documentStandard"
                            aria-label="Document Standard"
                            th:hx-get="|@{/document-types/standards}|"
                            hx-trigger="change"
                            hx-target="#dt-list"
                            hx-swap="innerHTML"
                            _="init js return new URLSearchParams(window.location.search).get('documentStandard') end set @value to result end" >
                        <option value=""></option>
                        <option value="EDIFACT">EDIFACT</option>
                        <option value="X12">X12</option>
                    </select>

I can log the "value" and it works. I'm thinking there is some sort of race condition. Also, I have another select box that does the same thing but the "options" are the result of a slow hx-get query.

Any tips on this one?

Thanks

from _hyperscript.

WedersonCD avatar WedersonCD commented on June 24, 2024

you didn't control the default select option using the value property.

You can use the selected property into the option.

` <select class="w-80" id="documentStandard" name="documentStandard"
aria-label="Document Standard"
hx-get="|@{/document-types/standards}|"
hx-trigger="change"
hx-target="#dt-list"
hx-swap="innerHTML"
_="init
js
return new URLSearchParams(window.location.search).get('documentStandard')
end
set defaultValue to result
add @selected to <option[value='${defaultValue}']/>

end" >

EDIFACT
X12
`

from _hyperscript.

cbmeeks avatar cbmeeks commented on June 24, 2024

Oh, cool. Thanks.

I also discovered this works but not sure how/why.

_="init js return new URLSearchParams(window.location.search).get('documentStandard') end set <select[name='documentStandard']/>'s value to result end"

from _hyperscript.

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.