When configuring the grid, I add following to edit the row using a popup box
columns.Command(command => { command.Edit()}
and
.Editable(editable => editable.Mode(GridEditMode.PopUp))
columns.Command(command => { command.Edit()}
and
.Editable(editable => editable.Mode(GridEditMode.PopUp))
However, kendo is using a default edit box (don't know where it coming from). I want to use a edit box created by myself instead of this default one. How do I achieve it?