I am faced with the task of enhancing a tree view display from (http://alexsuleap.github.io/) by updating a node with a bell icon only after other relevant data on the page has been loaded. The specific icon that needs to be displayed is "glyphicon glyphicon-bell" from the Glyphicons Halflings font in AngularJS.
My initial idea was to update the text content of the tree node and introduce a span element with the 'glyphicon glyphicon-bell' class. However, this approach resulted in the icon being rendered as plain text rather than an actual icon.
What alternative methods can I employ to successfully modify each node within the tree view to show the desired 'glyphicon glyphicon-bell' or bell icon at the beginning of each node?