cancel
Showing results for 
Search instead for 
Did you mean: 

SAP Screen Personas 3.0 SP09 - Error after Tab Merging some GuiTableControls

Andreas05
Product and Topic Expert
Product and Topic Expert
0 Kudos
319

We`ve created a flavor in which we put some table controls on another tab.
Now when I want to select a table row, following error occurs:
"Uncaught TypeError: Cannot read property 'setRowSelection' of undefined". Filling the table through clicking inside a table field works fine.
We are on SP09 with kernel version 773 patch level 200.



Any suggestions what´s wrong?

Regards,
Andreas

View Entire Topic
Thomas_Mangler
Active Participant

Hi Andreas,

Technically speaking, the moved element still belongs to origin Tab.

If you want to select such a moved element by scripting, you have first to select the origin Tab of this element by script.

Try it like this

session.findById("wnd[0]/usr/..OriginTab").select();
select your table row
session.findById("wnd[0]/usr/..ActualVisibleTab").select();