Hi,
Trying to use AutoComplete within the Grid as the option to fill data on a column - with EditTemplate, however, when open to Add a new item, the list of values is not presented.
Changing from AutoComplete to DropDownList, works as expected.
Could you please indicate on the snippet below what is wrong?
<
GridColumn
Field
=
"@(nameof(ItemRateio.Projeto))"
Title
=
"Projeto"
Width
=
"150px"
>
<
EditorTemplate
>
@{
var ItemToEdit = context as ItemRateio;
<
TelerikAutoComplete
Data
=
"@Projects"
Placeholder
=
"Selecione Projeto"
@
bind-Value
=
"@ItemToEdit.Projeto"
>
</
TelerikAutoComplete
>
}
</
EditorTemplate
>
</
GridColumn
>
Projects is a List<string> and ItemRateio.Projeto is also a string.
Thanks