Angular + PropertySheet: A Constant Struggle

Hi,

I think this is one of the first issues I opened a few months ago.

With every release of webix, Property Sheet w/ Angular breaks!

Can you please fix this: http://webix.com/snippet/77fc0f08

PS. I know the snippet editor isn’t running the latest version. With the latest version, the text label “just click me” actually does refresh the property sheet view!?!?!

PPS. Can’t get the check box to send notifications without having to click in its vicinity…try it long enough and it will actually crash the snippet editor altogether…

I’m afraid it’s just so much simpler with angular straight-up… http://webix.com/snippet/0d1b8567

You have data names as “axis, chartType” etc, and in same time, in config you have ids like “510axis, 510chartType, etc” - data was not mapped correctly, because field id and object property are different

It seems to be working correctly after fixing IDs
http://webix.com/snippet/31614ea1

For checkbox you can use onCheck event, similar to onAfterEditStop

Webix is not a silver bullet. There is some areas where components are perfect choice, but If you can achieve the better result with native HTML - there is no sense to use Webix components.

Thanks Maksim! I had to change the ids after the previous release in order to get it working again

The property sheet gets populated every time I click on a tree node which contains the property hash, and since many nodes have the same set of properties, Webix started throwing an error. Prefixing the name with the id fixed the problem in the previous release…

And I agree, it’s about having a big toolbox and choosing the right tool for the job. For now, I’ll just keep my new propertySheet Directive…