Hi there,
I am working on a panel on with I have a button, which fires parts of the following code (where data is the grids DataStore).
if (view != null)
{
data.Add(new BlockUserData());
view.BeginEdit(view.DataStore.Count()-1, 1);
}
My idea was to add an empty item to the datatstore that I later will overwrite once the editing is finished.
It works fine, BUT the very first time I click the button the cell-editing is not started.
Once I retry it works fine.
What am I missing?
First try:

Every try after:

Thanks,
T.