iron-form
iron-form copied to clipboard
Custom form element
### Description We use the following code for our forms: ``` ``` This works wonderfully in all browsers and submits the content as json. However Microsoft Edge doesn't support this...
In response to my issue ticket (https://github.com/PolymerElements/iron-form/issues/272). This is PR to show what I actually meant and because I hope this small feature gets implemented.
### Description Hi @notwaldorf and @valdrinkoshi, thanks for merging the other 2 PRs. I have encountered another small issue with iron-form when parts of a complex form are lazily added...
### Description 'iron-form' seems to send the values concatenated with ', ' in between for multiple name-value pairs ### Expected outcome 'iron-form' should send and array of values not an...
`` contains all the complex logic of searching for the validatable and submittable elements. It would be really helpful for it to expose a public method/property to retrieve these. @notwaldorf...
A native `form` element provides the `elements` property which contains a list of all the elements in the form (`input`, `select`, ...). However one would expect to use `paper-input` or...
This seems to be a recurring issue, but this time too many elements are submitted, including the ones that are in shadow-root. For example if your form has a paper-dropdown-menu...
### Description Sorry for the issue spam ;) There is one more issue with form reset that I ran into. This happens when an element is initially disabled an becomes...
listen for dom-change event to track dynamically added elements by dom-if and dom-repeat for form reset. fixes #263
I am writing a Polymer 2 element that decorated `` My element needs to work with `` _and_ the form itself that is decorated by `` -- which is stored...