Is there a way to add a select input to TreeList inline editing? I just able to find only text, numeric, date and boolean inputs.
Thanks in advance.
1 Answer, 1 is accepted
0
Wissam
Telerik team
answered on 20 Apr 2023, 01:48 PM
Hello, Enes,
You can achieve this using the TreeListColumn editCell prop which allows you to render the component of your choice as a custom editor. Basically, the `editCell` property passes the TreeListCellProps to the component that you can use for populating the editors and handling the changes through the `props.onChange` event.
In the below example, I am rendering our DropDownList component as a custom editor (for the `name` column) which is a richer version of the <select> element: