Skip to content

Tag: angular

filter value of select to do a partial sum

Having two classes professor and student: professor.ts student.ts To add up the scores of each student relative to his teacher I did: This is the HTML of the page: How can I do a partial sum of the selections, assuming for example that I have 5 professor with 1 student for every professor, and want to add onl…

loading different values into select angular

Hi I have a problem with loading data from localStorage into a select component. I would like each select after selecting different options to be saved in localStorage and after refreshing the page, the value from the select will be remembered, currently the last option is remembered and loaded to all app.com…

Angular – Scroll Event only page scroll

I need to check scroll event for a “show more” features. Im using: and this code: Unfortunally the scroll listen to every scroll in page, for example a scroll inside a DropDown etc… How can I listen ONLY the PAGE scroll ignoring everyelse? Answer One solution might be to use hostListener fro…