We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I often do this:
Inputs.table
Inputs.table(data)
lookup
data
viewof lookup = Inputs.search(data)
Inputs.table(lookup)
💡 Would be nice to combine the above two-cell-combo into one:
Inputs.table(data, { search: <search props> })
The text was updated successfully, but these errors were encountered:
I made a quick prototype: https://observablehq.com/d/26da32e725a4aa1b using code from https://observablehq.com/@tophtucker/pipe
Sorry, something went wrong.
No branches or pull requests
I often do this:
Inputs.table
to show the data in one cell:lookup
cell with the search and pass it into the table cell instead ofdata
💡 Would be nice to combine the above two-cell-combo into one:
The text was updated successfully, but these errors were encountered: