Coder Social home page Coder Social logo

Comments (5)

elimintz avatar elimintz commented on June 17, 2024

You can stop event propagation be setting the event_propagation attribute to false https://justpy.io/reference/htmlcomponent/#event_propagation

I will write more about this later, but for now, some of what you are trying to do can be done this way:

import justpy as jp

input_classes = (
    "m-2 bg-gray-200 border-2 border-gray-200 rounded w-64 py-2 px-4 "
    "text-gray-700 focus:outline-none focus:bg-white focus:border-purple-500"
)
p_classes = "m-2 p-2 h-32 text-xl border-2"


async def input_handler(self, msg):
    print(msg)
    self.div.text = self.value

async def input_demo(request):
    wp = jp.WebPage()
    in1 = jp.Textarea(a=wp, classes=input_classes, placeholder="Please type here", debug=True)
    in1.div = jp.Pre(
        text="What you type will show up here", classes=p_classes, a=wp
    )
    in1.on("input", input_handler)
    return wp

jp.justpy(input_demo)

from justpy.

rajaravivarma-r avatar rajaravivarma-r commented on June 17, 2024

I tried this code, using input handler works fine. But I am trying to use the Input field like chat input field. Thus upon pressing the Enter key I take the value of the input field and clear it. I hope you get the point.

from justpy.

elimintz avatar elimintz commented on June 17, 2024

To do that, change input_handler to:

async def input_handler(self, msg):
    print(msg)
    self.div.text = self.value
    if self.value[-1]=='\n':
        self.value = ''

from justpy.

rajaravivarma-r avatar rajaravivarma-r commented on June 17, 2024

I will try it and reply back to you.

from justpy.

rajaravivarma-r avatar rajaravivarma-r commented on June 17, 2024

I could get it work with Textarea like in the snippet you provided. However, there is no good reason why my example shouldn't work. And it kinda feels hacky to use textarea when an input field should work just fine.

I am NOT saying it should be fixed immediately. But if the architecture design of the whole thing forbids something like this, then it should be addressed as early as possible. Thanks for your time on this.

If you are curios, I tried this little snippet in Vue JS here https://jsfiddle.net/rajaravivarma_r/d38acefy/3/ to see if it is a limitation of Vue JS itself but it works flawlessly.

from justpy.

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.