I would like to be able to programmatically force a cell in the UltraGanttView grid to enter edit mode. As it stands currently, when a user uses the directional arrows to move to another cell, the cell does not enter edit mode. I would like to implement this functionality.
Is there something that would achieve something like the PerformAction function for the UltraGrid, and I'm just missing it?
Hello
One possible approach to achieve desired behavior could be if you are using the code:
private void ultraButton1_Click(object sender, EventArgs e)
{
EmbeddableUIElementBase embeddableElement = this.ultraGanttView1.UIElement.GetDescendant(typeof(EmbeddableUIElementBase)) as EmbeddableUIElementBase;
if (embeddableElement != null) ultraGanttView1.GridSettings.ColumnSettings[TaskField.Name].Editor.EnterEditMode(embeddableElement);
}
Let me know if you have any questions.
Regards