-
I'm populating an Inputs.table with the results from a What is the proper value for the table The code is basically: db = await DuckDBClient.of();
theRecords = db.query("SELECT a,b,c FROM read_parquet('https://example.org/data.parquet')");
theTable = Inputs.table(theRecords, {multiple: false});
theView = view(theTable); |
Beta Was this translation helpful? Give feedback.
Answered by
datadavev
Jul 23, 2025
Replies: 1 comment
-
Ended up with this as a solution: db = await DuckDBClient.of();
theRecords = db.query("SELECT a,b,c FROM read_parquet('https://example.org/data.parquet');
theTable = Inputs.table(theRecords, {multiple: false});
theView = view(theTable);
theTable.querySelector('input[value="0"]').click(); Seems to do the job. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Fil
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ended up with this as a solution:
Seems to do the job.