Is there any way to make a perspective table column that uses nested views sortable? Maybe via an output parameter on the nested view? This table displays real-time data, but the “data” key in table props is static.
The value of the cell in the table is what is sortable, the view is sent this value as part of the view rendering.
Yeah, we are sending a tag path to the view, which is static, and the view handles reading the tag. I wanted to sort based on the value the view has read from that tag. Guess there is no workaround here without restructuring how this component works
Read the tags separately and feed the values into the table data. Then it would work fine.
You might find my Integration Toolkit's tags() function helpful for this case.