001.png: On the GridViewComboBoxColumn how do I prevent the drop down from covering the input cell when grid is at the bottom of the screen's viewable area?
I've tried setting the position and location under the CellEditorInitialized event, but had no luck.
private void RadGridARCashReceipt_CellEditorInitialized(object sender, GridViewCellEventArgs e)
{
if (e.ActiveEditor is RadDropDownListEditor)
{
RadDropDownListEditor editor = e.ActiveEditor as RadDropDownListEditor;
if (editor != null)
{
RadDropDownListEditorElement ddlElement = (RadDropDownListEditorElement)editor.EditorElement;
ddlElement.EnableMouseWheel = false;
ddlElement.DropDownMinSize = new Size(200, 200);
ddlElement.AutoCompleteSuggest.DropDownList.DropDownMinSize = new Size(200, 200);
//ddlElement.AutoCompleteSuggest.DropDownList.Location = new Point(1000, 1000);
}
}
}