Hi,
How do i make UltraListView Item start edit on second click, rather than the first click ?
I would like the item to be only selected on the first click (without being in edit mode) and the second click will enter the item into edit mode.
Thanks in advance.
ekatvan,
I don't believe there is a property that will allow this, however you might be able to accomplish this by handling some of the UltraListView's events. You could create a boolean flag, set that boolean flag to true in the control's ItemActivating event, and then in the ItemEnteringEditMode event, check to see if the flag is true- if it is, cancel the event and set the flag back to false. This logic should cancel the ItemEnteringEditMode the first time an Item is clicked, but allow the Item to go into edit mode when it is clicked the second time.
Hope this helps,
~Kim~