You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
where onAddConference is a event to fire up to statefull parent component by stateless component (conferenceList in my example)
How Can I pass to bindings of stateless component "reference" to function from my statefull component ? How can I do this in route configuration ?
The js object must be passed through angular ui-router params with bindings inside, because of that js not really supporting passing variables by references, and when simple value, or function is passed by ui-router params, there is no possibility that bindings will be updated after changed in route component parent.
I have that situation:
Route config from statefull route component:
and I have stateless component, which is children component for statefull component:
where onAddConference is a event to fire up to statefull parent component by stateless component (conferenceList in my example)
How Can I pass to bindings of stateless component "reference" to function from my statefull component ? How can I do this in route configuration ?
I tried send "reference" to function by
but I got a error message:
Is there a way to solve this issue, or am I entirely wrong ?
The text was updated successfully, but these errors were encountered: