Open devolper102 opened 8 years ago
I have the list of users and I want to show the checkboxes selected if the user.id = people.user_id.How can I do this.It shows me checkboxes repeated.
`
{{user.name}}
</div>`
Did you every find a way to achieve something like this?
I ended up using something like this selected="{{ varA == varB ? 'true' : undefined }}"
selected="{{ varA == varB ? 'true' : undefined }}"
I have the list of users and I want to show the checkboxes selected if the user.id = people.user_id.How can I do this.It shows me checkboxes repeated.
`
Did you every find a way to achieve something like this?
I ended up using something like this
selected="{{ varA == varB ? 'true' : undefined }}"