cancel
Showing results for 
Search instead for 
Did you mean: 

onCellDoubleClick and Slipstream Engine

11-25-2025 5:19 PM
450 views 1 comments Go to solution
0 Likes
SAP Managed Tags
Labels
scripting
Subscribe

Using Slipstream Engine, SP18, is there a way to trap which row and cell are double clicked to use when the onDoubleClick event is fired?

By using the recording feature I can see the action knows where I clicked but I can't figure out how to grab the information.

Kindly,

Cristin

session.findById("wnd[0]/usr/cntlGRID1/shellcont/shell").executeWebRequest("post", "action", "53", "row_index=2&column_index=8", null);
session.findById("wnd[0]/usr/cntlGRID1/shellcont/shell").executeWebRequest("post", "action", "48", "cells=2,8", null);

0 Likes

Accepted Solutions (1)

Accepted Solutions (1)

Tamas_Hoznek
Product and Topic Expert
Product and Topic Expert
0 Likes

Hi Cristin,

I'm no scripting expert by a long shot but based on the API documentation I experimented a bit and found something that may help.

Here is this one-liner script:

session.utils.alert(rowIndex + ' ' + columnName + ' ' + cellValue);
If you attach this to the onCellDoubleClick event of your GuiTableControl, then double-clicking a cell will tell you which row, column name and cell content you double-clicked.

Answers (0)