Can you tell me what I'm doing wrong ?
Why does the cell not enter edit mode with this ... the correct line is selected and everything,but I have to use the mouse to click the cell to enter it's edit mode-> I want the cell in edit-mode right away ...
This is my code:
_ugFinishDateChanges.DataSource = changes;
if (changes.Count > 0){ _ugFinishDateChanges.Selected.Rows.Clear(); _ugFinishDateChanges.Selected.Rows.Add(_ugFinishDateChanges.Rows[0]); _ugFinishDateChanges.Focus(); _ugFinishDateChanges.ActiveRow = _ugFinishDateChanges.Rows[0]; _ugFinishDateChanges.PerformAction(UltraGridAction.EnterEditMode);
_ugFinishDateChanges.ActiveCell = _ugFinishDateChanges.Rows[0].Cells[
"ReasonForChange"];
//why does the actual "ReasonForChange" CELL not get the focus ??
}
Hi Mike
I was refering to this:
private void EnterEditMode()
{
this.ultraGrid1.Focus();
this.ultraGrid1.Rows[0].Cells[0].Activation = Infragistics.Win.UltraWinGrid.Activation.AllowEdit;
this.ultraGrid1.Rows[0].Cells[0].Activate();
UIElement uiElement =this.ultraGrid1.Rows[0].Cells[0].GetUIElement();
EmbeddableUIElementBase embeddableElement = uiElement.GetDescendant(typeof(EmbeddableUIElementBase)) asEmbeddableUIElementBase;
this.ultraGrid1.Rows[0].Cells[0].EditorResolved.EnterEditMode(embeddableElement);
Hi Mariela,
mariela77 said:How does that look in VB ?
Could you be more specific? This is a 6-year-old thread with a lot of different code in it for various things. So I don't understand what you are asking.
How does that look in VB ?
The reason is that cell editing is realized with a TextBox control, which is parented to the grid and positioned inside the cell. This can only be accomplished when the control has a visual presence.
I was having trouble allowing users to add a grid row by clicking an 'Add Line' button and putting the user in the first cell of the new row in edit mode. The row would add to the grid but the cell was not in edit mode so their text was getting erased when they moved out of the cell and the cell would not respond to the tab key.
Adding the piece with the UI element resolved my issue - thanks! However, I'm wondering why this was necessary??