From 3a60067655c45084e130eb1f6f780ad8e9952439 Mon Sep 17 00:00:00 2001 From: Hamza Albreem <94292623+braim23@users.noreply.github.com> Date: Wed, 16 Mar 2022 11:24:44 +0300 Subject: [PATCH] Update AutoComplete-Select.md Please check my changes quickly, if any of them change the meaning you wanted then undo them. --- docs/en/UI/AspNetCore/AutoComplete-Select.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) 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