Navigate to another window on table row selection

Wondering if there is a way to use a table for navigation? I would like for a user to be able to double click a row in a table and pass a parameter from a column in selected row to another window and open that window. Any suggestions would be great.

Some assumptions, but in a “mouseClicked” event script on the table:if event.clickCount==2: table = event.source if table.selectedRow>=0: param = table.data.getValueAt(table.selectedRow, "columnName") system.nav.openWindow("windowName", {"paramName": param})You should check the docs for system.nav.openWindow() and Parameterized Windows.

Worked perfectly! Thanks again pturmel!