Hello, we are running EP6 SP9 and have developed a WebDynpro component that is using a table which is bound to a value node context. I am noticing that each mouse-click within a table cell where a different row is clicked causes a server round-trip resulting in poor performance. If selecting a cell within the same row, no server round-trip is performed.
A closer look at the generated Javascript reveals the following:
"onclick="return me.h_e(event,window,this,'SapTableCell','SAPTABLECELLCLICK',{'ColIdx':'5','SapTableId':'MDFG.MTES_Timesheet_Entry_ScreenView.Table0','event':'event','RowIdx':'2','Id':''},'TimesheetTemp.2',true);"
The SSR (server side manager) is being called to set the table's Lead Selection via the js onclick function.
Is this really necessary? Case in point - if the user uses the up/down keys and moves to a different row in the table, the server round-trip is not performed.
Any solutions would be appreciated.