How to use multiple lines when editing cells?
https://www.telerik.com/forums/auto-row-height-with-multiline-cell
Although I refer to the above page, cells with multiple lines work normally, but cells with only one line do not display text in Edit-Mode.
private void gridTextData__CellEditorInitialized(object sender, VirtualGridCellEditorInitializedEventArgs e)
{
var textediter = e.ActiveEditor as VirtualGridTextBoxEditor;
if (textediter != null)
{
textediter.Multiline = true;
}
}