Code Monkey home page Code Monkey logo

Comments (7)

jkleiser avatar jkleiser commented on June 4, 2024

Maybe I have to use a plain JavaScript myInput.addEventListener('input', ...), but I'm not sure what's the right time/place to do that. I must of course be sure that myInput is referring to the right input element when the event happens.

from apprun.

jkleiser avatar jkleiser commented on June 4, 2024

I found a solution, and it did not make use of addEventListener. For each input element, I assigned a unique id, an id that also told where in my state/model the new value should go. In the oninput="app.run(...)" of the input element I included the id as a parameter, and in the update handler for that event I could do a document.getElementById(id).value to get the new value. Then I just had to decode the id to find where to put the value.

from apprun.

yysun avatar yysun commented on June 4, 2024

The way I usually do is to use the event keyword:

oninput="app.run('input_evt', event)"

You can get the value out of the event target:

update = {
  'input_evt': (state, e) => state = e.target.value
}

from apprun.

jkleiser avatar jkleiser commented on June 4, 2024

Thanks. According to MDN: window.event is a proprietary Microsoft Internet Explorer property.
However, it seems to be widely supported.

from apprun.

yysun avatar yysun commented on June 4, 2024

You can do this too:

oninput="app.run('input_evt', this)"
update = {
  'input_evt': (state, el) => state = el.value
}

from apprun.

jkleiser avatar jkleiser commented on June 4, 2024

Of course. Why didn't I think of that? ;-)

from apprun.

yysun avatar yysun commented on June 4, 2024

View source: https://different-cub.glitch.me

from apprun.

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.