Giter Site home page Giter Site logo

Comments (5)

chmac avatar chmac commented on May 3, 2024

OK, I see the error of my ways here. The widget doesn't render the <label>, it only renders the input. The label is rendered as well as whatever I supply for ui:widget. I guess the id question remains, even though my example no longer makes sense. My example does raise a different question, how I could replace a whole component, including the label, but that's for a separate issue...

from react-jsonschema-form.

n1k0 avatar n1k0 commented on May 3, 2024

I'm surprised your code snippet works; JSX requires to have a single root element, so you should use something like this:

'ui:widget': (props) ->
  <div><input type="checkbox" id="ID"/><label htmlFor="ID">I agree</label></div>

Note that wrapping the input within the label would prevent duplicating the id information while keeping clicks on the label activating the input:

'ui:widget': (props) ->
  <label><input type="checkbox" id="ID"/>I agree</label>

For unique id generation, the issue is probably to persist them along the entire lifecycle of the component, so that means persisting this in comp state, or keeping a whole tree of nested ids in root component state.

To be noted, maybe #45 would help achieving what you're after here.

Also, we don't have identified use cases for this in our current projects using this lib; so would you be willing to work on implementing this?

from react-jsonschema-form.

n1k0 avatar n1k0 commented on May 3, 2024

I'm trying to use a stateless widget (...) I could hope the component only loaded once (ouch)

Stateless components are indeed fully rendered every time they receive props. If you want to "initialize" a component, eg with something generated once attached to it, you need state, hence you can't use stateless components.

from react-jsonschema-form.

n1k0 avatar n1k0 commented on May 3, 2024

We now have generated unique ids for form widgets (docs).

from react-jsonschema-form.

chmac avatar chmac commented on May 3, 2024

@n1k0 Yet more awesomeness from y'all. Thanks.

from react-jsonschema-form.

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.