diff --git a/docs/en/UI/AspNetCore/AutoComplete-Select.md b/docs/en/UI/AspNetCore/AutoComplete-Select.md index 7d78b2426f..2e37606c80 100644 --- a/docs/en/UI/AspNetCore/AutoComplete-Select.md +++ b/docs/en/UI/AspNetCore/AutoComplete-Select.md @@ -1,5 +1,5 @@ # ASP.NET Core MVC / Razor Pages: Auto-Complete Select -A simple select component sometimes isn't useful with huge amount of data. ABP Provides a select implementation that works with pagination and server-side search via using [Select2](https://select2.org/). It works with single or multiple choices well. +A simple select component sometimes isn't useful with huge a amount of data. ABP Provides a select implementation that works with pagination and server-side search via using [Select2](https://select2.org/). It works with single or multiple choices well. A screenshot can be shown below. @@ -9,11 +9,11 @@ A screenshot can be shown below. ## Getting Started -This is a core feature and it's used by ABP Framework. There is no custom installation or additional package required. +This is a core feature and it's used by the ABP Framework. There is no custom installation or additional packages required. ## Usage -A simple is usage is presented below. +A simple usage is presented below. ```html ``` -It'll be automatically binded to an collection of defined value type. +It'll be automatically bound to a collection of defined value type. ```csharp public List TagIds { get; set; } ``` ## Notices If the authenticated user doesn't have permission on the given URL, the user will get an authorization error. Be careful while designing this kind of UIs. -You can create a specific, [unauthorized](../../Authorization.md) endpoint/method to get the list of items, so the page can retrieve lookup data of dependent entity without giving entire read permission to users. \ No newline at end of file +You can create a specific, [unauthorized](../../Authorization.md) endpoint/method to get the list of items, so the page can retrieve lookup data of dependent entity without giving the entire read permission to users. \ No newline at end of file