Posted 9 September 2021, 8:22 pm EST
Hi, I try to add a input autoComplete in my partial view. But, I have a problem with this.
View
@{
List<Programs> ListPrograms = ViewBag.ListProgram;
}
@Html.C1().AutoComplete().Bind(ListPrograms).DisplayMemberPath("Name").SelectedValuePath("ProgramsID").Id("ProgramsId");
Can you help me?
Regards