Hi,
I want to be able to filter by a specific column of the table (through Inputs.search), but not narrow the table to just that column.
Currently I have:
viewof theseCols = Inputs.select(data.columns, {multiple:true, value:data.columns})
viewof search = {
let n = Inputs.search(data,{
columns:theseCols
});
return n
}
Inputs.table(search)
This does succesfully allow to search for only the selected columns, but also narrows the table down to just those columns. I’d like for every column to remain visible.
Thanks.