You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
gRPC standard List method output is rendered as one table per record, and records appear one after another mirroring json output passed through jq.
I would like to see columnar output.
What have I tried
searched for setting that would make this a table view.
I see that populateResultContainer is used to populate the grpc-response-data .output-container However that function is not wired up to anything in the latest code.
This function used to be called from $.ajax.Post.Done in v1.0.0
Please advise.
The text was updated successfully, but these errors were encountered:
@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.
The text was updated successfully, but these errors were encountered: