Skip to content

Commit 8f0c7e8

Browse files
dmihaylotsvetomir
authored andcommitted
docs: update for consistency
1 parent c4d9e2c commit 8f0c7e8

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed

docs-aspnet-core/helpers/listbox.md

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
---
22
title: ListBox
33
page_title: ListBox | UI for ASP.NET Core Tag Helpers
4-
description: "Learn how to configure the ListBox html helper for ASP.NET Core (MVC 6 or ASP.NET Core MVC)."
4+
description: "Learn the basics when working with the ListBox tag helper for ASP.NET Core (MVC 6 or ASP.NET Core MVC)."
55
slug: htmlhelpers_listbox_aspnetcore
66
---
77

8-
# ListBox HtmlHelper Overview
8+
# ListBox Tag Helper
99

10-
The ListBox HtmlHelper extension is a server-side wrapper for the [Kendo UI ListBox](http://demos.telerik.com/aspnet-core/listbox/index). It displays a list of data contained in a box and allows single or multiple selection, reordering, deleting items and features keyboard navigation as well as drag and drop. The Kendo UI ListBox can be connected with another listbox. The widget can be customized with the use of templates, toolbar positioning, placeholder and hint and command buttons messages localization.
11-
For a more detailed overview of the ListBox HtmlHelper check the ASP.NET MVC section of the documentation at [The ListBox HtmlHelper Overview]({% slug overview_listboxhelper_aspnetmvc %}).
10+
The ListBox tag helper is a server-side wrapper for the [Kendo UI ListBox](http://demos.telerik.com/aspnet-mvc/listbox/index).
11+
12+
It displays a list of data that is contained in a box and allows single or multiple selection, reordering of selected items, and deleting items and features keyboard navigation as well as the dragging and dropping of items. You can also connect the ListBox with another list-box and customize the widget with the use of templates, toolbar positioning, placeholder and hint, and localization of its command buttons messages.
13+
14+
For more information, refer to the article on the [ListBox HtmlHelper for ASP.NET MVC]({% slug overview_listboxhelper_aspnetmvc %}).
1215

1316
## Basic Usage
1417

@@ -19,7 +22,7 @@ The following example demonstrates how to define the ListBox by using the ListBo
1922
```tab-Razor
2023
@(Html.Kendo().ListBox()
2124
.Name("optional")
22-
.Toolbar(toolbar =>
25+
.Toolbar(toolbar =>
2326
{
2427
toolbar.Position(Kendo.Mvc.UI.Fluent.ListBoxToolbarPosition.Right);
2528
toolbar.Tools(tools => tools
@@ -47,7 +50,9 @@ The following example demonstrates how to define the ListBox by using the ListBo
4750
}
4851
```
4952

50-
### Configuration
53+
## Configuration
54+
55+
The following example demonstrates the basic configuration for the ListBox tag helper.
5156

5257
###### Example
5358

@@ -96,8 +101,8 @@ The following example demonstrates how to define the ListBox by using the ListBo
96101

97102
## See Also
98103

99-
* [JavaScript API Reference](/api/javascript/ui/listbox)
100-
* [The ListBox HtmlHelper in details]({% slug overview_listboxhelper_aspnetmvc %})
104+
* [JavaScript API Reference of the ListBox](/api/javascript/ui/listbox)
105+
* [ListBox HtmlHelper for ASP.NET MVC]({% slug overview_listboxhelper_aspnetmvc %})
101106
* [Overview of Telerik UI for ASP.NET Core - RC1]({% slug overview_aspnetmvc6_aspnetmvc %})
102107
* [Get Started with Telerik UI for ASP.NET MVC in ASP.NET Core Projects]({% slug gettingstarted_aspnetmvc6_aspnetmvc %})
103108
* [Get Started with Telerik UI for ASP.NET MVC in ASP.NET Core Projects on Linux]({% slug gettingstartedlinux_aspnetmvc6_aspnetmvc %})

0 commit comments

Comments
 (0)