Column Selectors

Hello everybody!

Quick question:

I have two similar tables with different aggregate grouping on a screen in v 7.5.4 and it would be great if I could use one column selector to select the columns on both tables.

Does anybody know a slick way to drive both tables?

Just a shot in the dark.

Thanks!

  • Mike

The following is based on two tables (Table and Table 1). Placing this code into the mouseReleased event of Table will case the other tables selected column to follow:

if event.source.selectedColumn >= 0:
	event.source.parent.getComponent('Table 1').selectedColumn = event.source.selectedColumn

Hope that helps.