How to display Kendo grid dropdown column always in edit mode?

1.9k Views Asked by At

I am using kendo grid which has column Action as Dropdown. Its working fine. But the behavior is when grid load the dropdown column value display as text and when I click on that text then dropdown get display with populated values. Is it possible to display column value always in Dropdown instead of Text?

Thanks!

1

There are 1 best solutions below

0
On

Telerik has a sample on how to do it for a checkbox: http://docs.telerik.com/kendo-ui/web/grid/how-to/Templates/grid-with-checkbox-column

I Guess you could do the same for a drop-down:

  • Create a template for the column with a drop-down.
  • Add a javascript which updates the underlying model when the user change the selected item in the drop-down.