I have a question that I have been unable to find a clear and concise answer to without extra unnecessary calls through Dart and Polymer.

I want to create a parent custom-element that is able to allow it's child objects to access the parents information.

Example:

If I create a container called Student-View that sets up some tabs and pulls the basic information. Then have a child element that is able to access much of the same information through {{firstname}} {{lastname}} etc...

I am not sure the best way to accomplish this, and would prefer if it were all self contained. Or, should I go the angular dart route. Thanks!

有帮助吗?

解决方案

Your description is pretty vague. Do you mean something like this?

http://jsbin.com/kelub/5/edit

In this case, the parent binds the student record to the child element's student property, like so:

<student-worksheet student="{{student}}"></student-worksheet>

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top