Thank you, Sander! Yes. 
This is the .ts file: 

import {Component, NgModule} from '@angular/core'import {BrowserModule} from 
'@angular/platform-browser'

@Component({
     selector: 'my-app',
     template: `
     <table xmlns:th="http://www.w3.org/1999/xhtml";>
         <tbody>
            <tr>
                <th>User Name</th>
                <th th:each="role : ${roles}">
                   <div class="row">
                       <div th:text="${role.type}"></div>
                   </div>
                </th>
            </tr>
        </tbody>
    </table>`,
    })export class App {}


On Sunday, October 30, 2016 at 10:57:45 PM UTC-5, Sander Elias wrote:
>
> Hi Yuting...,
>
> So, if I understand your question right, you are wondering why your server 
> does not render a th: construct you are putting into the DOM inside your 
> client-side part of your application?
>
> Regards
> Sander
>

-- 
You received this message because you are subscribed to the Google Groups 
"Angular" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to