I am trying to build a grid that has a combobox in it that should be filled from an Ajax request. But based on the demo on the page, I am not being able to determine where the combobox is filled.
I appreciate any help on the matter.
Regards,
Alexandre
2 Answers, 1 is accepted
0
Stoyan
Telerik team
answered on 11 Jan 2024, 09:16 PM
Hi Alexandre,
Based on the phrasing of your question I suppose that you are looking to add a ComboBox Editor for a column of the Grid.
To achieve this you can either specify a UIHint within the Model
[UIHint("ClientCategory")]
public CategoryViewModel Category
{
get;
set;
}
These configuration will search for a View in the Views/Shared/EditorTemplates directory of the project and will use the Component configured in that View as the Editor for the column.
Stay tuned by visiting our public roadmap and feedback portalpages. If you're new to the Telerik family, be sure to check out our getting started resources, as well as the only REPL playground for creating, saving, running, and sharing server-side code.