New to Telerik UI for ASP.NET Core? Download free 30-day trial
ASP.NET Core TreeList Popup Editing
- EXAMPLE
- VIEW SOURCE
-
Change Theme
defaultDefault Theme
- Main
- Main Dark
- Nordic
- Ocean Blue
- Ocean Blue A11Y
- Purple
- Turquoise
Bootstrap Theme- Main
- Bootstrap 3
- Bootstrap 3 Dark
- Main Dark
- Nordic
- Turquoise
- Turquoise Dark
- Urban
- Vintage
Material Theme- Main
- Arctic
- Lime Dark
- Main Dark
- Nova
Classic Theme- Main
- Green
- Green Dark
- Lavender
- Lavender Dark
- Main Dark
- Metro
- Metro Dark
- Moonlight
- Opal
- Opal Dark
- Silver
- Silver Dark
- Uniform
Fluent Theme- Main
Also available for:
CLIENT-SIDE API SERVER-SIDE APIDescription
The Telerik TreeList for ASP.NET Core component supports a variety of editing options including a popup editing mode. Popup editing enables you not only to visualize data in a table structure, but also to manipulate that data and save the changes that have been made.
The ASP.NET Core TreeList supports the create, update, and destroy data-editing operations through a simple configuration of its data source:
- Set the
Editable
configuration option of the TreeList. - Declare the
Model
,ParentId
,Expanded
, andField
definitions through the DataSource. -
Configure the DataSource for performing CRUD data operations defining the
Create
,Update
, orDestroy
options. To enable the insertion of new records, enable the relevant option in the toolbar. To delete items, include a Delete command column.
This example shows how to configure the TreeList for popup editing and insert new items through a popup form by setting the Editable
PopUp
option of the component.