Skip to content

Commit

Permalink
Implemented method to clear search text value in mudchipfield. (#442)
Browse files Browse the repository at this point in the history
Co-authored-by: Aishwarya Sounderrajan <aishwarya.s@telliant.net>
  • Loading branch information
Aishwarya1821 and Aishwarya Sounderrajan authored Aug 13, 2024
1 parent 26f2275 commit c8462d0
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -199,5 +199,14 @@ public async Task Closed(MudChip<T> chip)
await _textFieldExtendedReference.FocusAsync();
}

/// <summary>
/// Clear the text field.
/// </summary>
/// <returns></returns>
public async Task ClearTextField()
{
await _textFieldExtendedReference.Clear();
}

}
}

0 comments on commit c8462d0

Please sign in to comment.