0 votes
in Angular by

Which code tells Angular that you want to pass in the lookup list token value object within the template markup, and render out the select options in the form?

1. @Inject('lookupListToken`) lookupLists {} ---

2. @Inject(lookupListToken, lookupLists) {}

3. @Inject(lookupListToken) lookupLists {}

4. @Inject({lookupListToken, lookupLists}) 

1 Answer

0 votes
by
Correct answer is :- @Inject('lookupListToken`) lookupLists {}
...