is possible to pass a component (in my case a perspective table) via params?
I need to do this because I have this table in an embedded view and and outside I have an export button with a function that take the full table component so to manage the properties. Fo example if I call the table in this way it works
Technically I’ll mention that it is possible, though passing the entire tables data is probably unwise and going to to cause you grief so message handlers is the proper way to go about this. But I thought I’d add this as if it’s a small bit of info like a selected line, you could just pass that.
You could use an onchange script on the table.props.data to write props.data to a parameter called dataOut set as an output. Then in the parent view reference that parameter via embeddedview.props.params.dataOut and have it for your export button.