Forum Discussion

KristijanB's avatar
KristijanB
New Contributor
15 years ago

DevExpressQuantumGrid - record - dblClickCell

Hi,

When I try to record dblclickclell in gird I get operations TcxGrid.ClickCell(0,'Clumn',0,0) and TcxCustomDropDownInnerEdit.Click(64,7).

If I run this test it fails.

The solution that we are using now is:

TcxGrid.ClickCell(0,'Clumn',0,0);TcxCustomDropDownInnerEdit.DblClick(64,7);

But we do not like to record with coordinats. Is it posible to record with TcxGrid.dblClickCell(0,'Clumn',0,0).



Thanks.



Best regards,

Kristijan

1 Reply


  • Hi Kristijan,





    We've reproduced the behavior here. Currently, we are investigating the situation.





    In the meantime, you can either change the recorded script in the following way:

    TcxGrid.DblClickCell(0,'Clumn',0,0);





    or just delete coordinates from the Click method call:

    TcxGrid.ClickCell(0,'Clumn',0,0);

    TcxCustomDropDownInnerEdit.Click();





    In the second case, the click will be performed on the center of the edit control.