Skip to content
This repository was archived by the owner on Feb 16, 2021. It is now read-only.

id is not unique when two form in one page #412

Open
snadn opened this issue Mar 15, 2018 · 3 comments
Open

id is not unique when two form in one page #412

snadn opened this issue Mar 15, 2018 · 3 comments

Comments

@snadn
Copy link
Contributor

snadn commented Mar 15, 2018

Version

Tell us which versions you are using:

  • tcomb-form v0.9.19
  • react v16.2.0

Expected behaviour

id is unique in page

Actual behaviour

same id in page

Steps to reproduce

image
image

Stack trace and console log

Hint: it would help a lot if you enable the debugger ("Pause on exceptions" in the "Source" panel of Chrome dev tools) and spot the place where the error is thrown

image

@febaoshan
Copy link

I found this behavior when the input element auto-filled by the browser. Generally, users will remember their username and password on the browser. But I do not resole this problem property. Waiting for a nice solution.

@arnoldbird
Copy link

arnoldbird commented May 16, 2018

I haven't used this library on the web. I've only used it for iOS app development. So I'm not sure this will help, but you can set an ID for each element in your form options:

let options = {
    fields: {
      my_field: {
         id: 'my_id',
         label: 'something'
      },
      my_other_field: {
          id: 'my_other_id',
...

@Mike-Zhylevych
Copy link

Following code will do the trick for tcomb-form"^0.9.21"

let options = {
    fields: {
        email_form: {
            attrs: {
                id: 'my_id'
            }
        },
    }
}

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants