Vlad Balin

Results 71 comments of Vlad Balin

Create your own `` tag which behaves like this. This is the normal way of handling such a situation in the way needed for you. For the start copy Input...

You're supposed to create your own controls wrapping all necessary styles and handling error formatting, in the way that your forms will be defined with the semantic markup. That's an...

> Yesterday I „solved“ it using onBlur={() => this.setState({titleTouched: true})} but having more local state in a subcomponent did not feel right. It is okay. You need to hide this...

'links' member is a cache, which is populated when links are created. Try `const links = this.linkAll();` in the `render()`, and `this.links` in UI event's callbacks (if you have any)....

Hi. Links are meant to be immutable and to be recreated again in render(). That applies to validation as well. It would be very helpful if you provide the code...

I could try to make 'link.compunent' not to be enumerable. Likely, it will exclude it from the snapshot.

Take valuelink.* from [this branch](https://github.com/Volicon/NestedLink/tree/f/hide-backrefs) and tell me if it's any better.

If it is, I will make more changes like this one and merge it in `master`

Cool! I will certainly look at that very soon.

May I propose the alternative solution? I think it's good enough and LinkedComponent support would add no value compared to this: ``` class SomeComponent extends LinkedComponent { updateLink = ()...