Edit the Clicked Title in the Input Field

// New variable for two-way binding
postTitle: string = '';
onEditPost(post: { id: any; title: string }) {
    // Set post title to the input field
    this.postTitle = post.title;
}
<input
  #inputRef
  [(ngModel)]="postTitle"
  (keydown.enter)="createPost(inputRef)"
  type="text"
  class="form-control mb-3"
/>
Was this page helpful?