title | page_title | description | slug | tags | published | position |
---|---|---|---|---|---|---|
Getting Started |
Getting Started with the ChipList |
Get started with the WebForms ChipList by Telerik UI for ASP.NET AJAX and learn how to create, initialize, and enable the component. |
chiplist/getting-started |
chiplist,getting started |
true |
1 |
This guide demonstrates how to get up and running with the Telerik WebForms ChipList.
After the completion of this guide, you will be able to achieve the following end result:
- add a
telerik:RadChipList
element to the page - and
telerik:ChipListItem
elements to theItems
collection - configure the
telerik:ChipListItem
options, likeIcon
, andLabel
.
Example
<telerik:RadChipList runat="server" ID="RadChipList1">
<Items>
<telerik:ChipListItem Icon="plus" Label="Add" />
<telerik:ChipListItem Icon="pencil" Label="Edit" />
<telerik:ChipListItem Icon="trash" Label="Remove" />
</Items>
</telerik:RadChipList>
- create a new instance of a
RadChipList
object - and
ChipListItem
objects to theItems
collection - configure the
ChipListItem
options, likeIcon
, andLabel
. - add the
RadChipList
instance to theControls
collection of another control (e.g.PlaceHolder1
)
Example
protected void Page_PreInit(object sender, EventArgs e)
{
RadChipList chiplist = new RadChipList() { ID = "RadChipList1" };
chiplist.Items.Add(new ChipListItem() { Icon = "plus", Label = "Add" });
chiplist.Items.Add(new ChipListItem() { Icon = "pencil", Label = "Edit" });
chiplist.Items.Add(new ChipListItem() { Icon = "trash", Label = "Remove" });
PlaceHolder1.Controls.Add(chiplist);
}
Protected Sub Page_PreInit(ByVal sender As Object, ByVal e As EventArgs) Handles Me.PreInit
Dim chiplist As RadChipList = New RadChipList() With {
.ID = "RadChipList1"
}
chiplist.Items.Add(New ChipListItem() With {
.Icon = "plus",
.Label = "Add"
})
chiplist.Items.Add(New ChipListItem() With {
.Icon = "pencil",
.Label = "Edit"
})
chiplist.Items.Add(New ChipListItem() With {
.Icon = "trash",
.Label = "Remove"
})
PlaceHolder1.Controls.Add(chiplist)
End Sub
The PlaceHolder1
<asp:PlaceHolder ID="PlaceHolder1" runat="server"></asp:PlaceHolder>
important Creating controls programmatically must be done in an early event such as PreInit (preferably), and Init. For more details you can check out the ASP.NET Page Life-Cycle Events
- [Change the Appearance]({%slug chiplist/appearance%})
- [Customize the ChipList]({%slug chiplist/customization%})
- [Enable Selection]({%slug chiplist/selection-mode%})
- [Removable]({%slug chiplist/removable%})
- [Client-side Programming]({%slug chiplist/client-side-programming/overview%})
- [Server-side Programming]({%slug chiplist/server-side-programming/overview%})
- [Overview]({%slug chiplist/overview%})
- [Change the Appearance]({%slug chiplist/appearance%})
- [Customize the ChipList]({%slug chiplist/customization%})
- [Enable Selection]({%slug chiplist/selection-mode%})
- [Removable]({%slug chiplist/removable%})
- [Client-side Programming]({%slug chiplist/client-side-programming/overview%})
- [Server-side Programming]({%slug chiplist/server-side-programming/overview%})