I hope I can make sense with this question
is it possible to alter your text label within Angular .html layout depending on some criteria in your query? For example below, possibly I'd like to interactively alter the "placeholder="Service Date" to something other than 'Service Date', depending on some criteria in my query in the corresponding .ts file, some indicator field. Effectively, if indicator='x' then placeholder="something else"
is that possible to accomplish?
<div class="row">
<mat-form-field>
<input matInput placeholder="Service Date" name="serviceDate" value="
{{claim.serviceDate | date}}" disabled="disabled">
</mat-form-field>
</div>
value, right? Why not try a similar technique withplaceholder?