Open mandarjog opened 3 months ago
@mandarjog, I assume you mean the HTML table output for responses?
It was removed in #100. There is an existing issue open about adding it back, but in an opt-in way (and possibly with more information in the table to make it more useful): #308.
In its previous form, it wasn't providing much value other than it was slightly nicer aesthetically. But it had plenty of drawbacks: it was extremely slow to load and render for very large responses. This made grpcui very painful to use for certain kinds of RPC endpoints, like queries that return a lot of data or even just complex and deeply-nested data structures (since that meant many layers of nested HTML tables, which are slow for the browser to compute layout).
gRPC standard
List
method output is rendered as one table per record, and records appear one after another mirroringjson
output passed throughjq
.I would like to see columnar output.
What have I tried
populateResultContainer
is used to populate thegrpc-response-data .output-container
However that function is not wired up to anything in the latest code.Please advise.