DevExpressQuantumGrid - record - dblClickCell
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2010
10:22 PM
03-18-2010
10:22 PM
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
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 1
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2010
04:09 AM
03-19-2010
04:09 AM
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.
--
Dmitry Nikolaev
Did my reply answer your question? Give Kudos or Accept it as a Solution to help others. ⬇️⬇️⬇️
Dmitry Nikolaev
Did my reply answer your question? Give Kudos or Accept it as a Solution to help others. ⬇️⬇️⬇️
