I have a variable that is assigned HTML text box tag.i want to display as text box and access its value
@Component({
selector: 'app-field-add',
templateUrl: './field-add.component.html',
styleUrls: ['./field-add.component.css']
})
export class FieldAddComponent implements OnInit
{
public htmlTextBox ="<input type='text' [(ngModel)]='Field' name='Field'>"
}
On The template I have placed the variable
{{ htmlTextBox }}