Is there any way to add dynamic element in to specific location without #localvariable
(<input type='button' #localvariable (click)='doSomething()'>
).
For example, given:
<td></td>
After compiling:
<td><input type='button' (click)='doSomething()'></td>