Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I would like to change the dir attribute according to a dynamic variable .

  <input 
                [id]="'element'+i" 
                [(ngModel)]="parent.firstName" 
                class="form-control input-lg" 
                [name]="'parent.firstName'"
                [attr.aria-describedby]="'lblfirstName'+i" 
                pattern="^[a-zA-Z-u0590-u05FF ]+$" 
                #firstName="ngModel" 
                [required]="i == 0"
                [ngModelOptions]="{ updateOn: 'blur' }"
/>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.7k views
Welcome To Ask or Share your Answers For Others

1 Answer

If you want to bind the dir attribute, you can add this to the template.html:

<input type="text" [dir]="myDir" />

and in your component.ts:

@Component({
  selector: "my-app",
  templateUrl: "./app.component.html",
  styleUrls: ["./app.component.css"]
})
export class AppComponent {
  myDir = "rtl";
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...