No event.view in onRowRender(event) for Tableview

Hello all,

I’m trying to simulate four different columns using a tableview widget. I’ve also looked for some old samples, which suggested to add different widgets in a single row within the onRowRender(event). The way to do this is by using the event.view display group, which can then be used to add different widgets in that view group.

However, the event parameter only has a row method, it doesn’t have a view method, that can be used to access its display group view, and then add other elements to it. I’m not sure if I’m missing anything here. Any help here would be appreciated.

Thanks,

Asheesh

Hi, event.row is the same, the row parameter is the view display group

Thanks Atanas. This surely helps! I also found that the samples I was looking at are obsolete, and they used a event.view parameter to add in multiple items in a single row. However, the row itself as you rightly mentioned, is the container view, so any stuff can be added to it.

Hi, event.row is the same, the row parameter is the view display group

Thanks Atanas. This surely helps! I also found that the samples I was looking at are obsolete, and they used a event.view parameter to add in multiple items in a single row. However, the row itself as you rightly mentioned, is the container view, so any stuff can be added to it.