Forum Discussion
csnider
7 years agoOccasional Contributor
I am hitting a Telerik grid. I'm not a programmer and it took me a while to figure this out, but the FindRow, DblClickRowIndicator, and LastResult worked for me.
Maybe something similar would work for you? Can be done using the Keyword GUI as well.
function Test2()
{
var LastResult;
LastResult = Aliases.BetaGlobalDataEntry.GlobalDataEntryMainForm.radDock1.toolTabStrip5.twBatches.radSplitContainer1.splitPanel2.gvBatches.FindRow("ID", KeywordTests.Test2.Variables.oceanPositive("batchID"));
Aliases.BetaGlobalDataEntry.GlobalDataEntryMainForm.radDock1.toolTabStrip5.twBatches.radSplitContainer1.splitPanel2.gvBatches.DblClickRowIndicator(LastResult);
}