function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Jeff Garbers - PRODJeff Garbers - PROD 

Access to child component attributes from parent component markup?

In its markup, a component can refer to its own attributes using {!v.attrname} .  Is there a similar way to refer to the attributes of its child components? From within the controller. you can use component.find('foo').get('v.childattr'), but I don't see a comparable way to do it from within the parent's markup.

Hoping I'm missing something simple - thanks in advance for any help.
Shruti SShruti S
I think you have to either use Events to communitcate between Components.

Let me know if you have ny additional queries.
Ravi Dutt SharmaRavi Dutt Sharma
No you cant access any other components attribute. Attributes are meant to be self contained.