Hello!
Is there an event that allow me to get the value of a cell when a double click is done?
I was trying to find a DoubleClickCell event but it dosen't exists, the only I found was DoubleClick but it for the component... :(
Hello Mike,I made the changes and it doesnt work for me. Does it happen to do anything with the version?
I am attaching the source code again.
All I get is a empty Row edit template with no values. and it doesnt work always?
Regards
Hi,
I ran your sample (after making the code change to use RowEditTemplateResolved) and everything is working fine for me. Are you having these problems with the sample posted here? Or some other application?
Hello,
It does not work as expected.
It shows the template. But the cancel and OK buttons are not working.
Also the Template position is not correct. It pushes the grid Down.
Also it does not show the Template of the Active Row. It shows a Blank Row Edit Template.
Okay, the problem is that the RowEditTemplate property of the row was never assigned. This is because you are applying the RowEditTemplate to the band, not the individual rows. This is easily fixed. Just change the code to:
Me.UltraGrid2.ActiveRow.RowEditTemplateResolved.Show()
Attached is the Sample Application.