Declan Naughton
Declan Naughton
For reference, the [Mosaic table component](https://github.com/uwdata/mosaic/blob/main/packages/inputs/src/Table.js) maintains sorting state whenever selected rows change. The [Olympic Athletes dashboard](https://idl.uw.edu/mosaic/examples/athletes.html) is an example where you can test this.
Also, the OHQ [data table cell](https://observablehq.com/documentation/cells/data-table) supports this It's also probably better for my usecase if it gets [ported to Framework](https://github.com/observablehq/framework/issues/23#issuecomment-2606382056)
There are usecases for customization about how selections are resolved within single tables too. e.g. I have different versions of numbers in a single table (`version` | `number`), and I...
> Hi @declann, I'm preparing a PR that includes a new "region" interactor that allows you to make 2D selections that map to individual fields of selected elements (like ids)...
Thanks for the pointer - Custom cells and embedding-atlas Table and the things around it look seriously neat! But in Observable Framework I'm struggling to render and init the table...
That's an interesting workaround Sam - thanks for sharing!
Now: ~~~js export const pols_maturity = () => { if (duration_mth() == policy_term() * 12) return pols_if_at({ timing_in: 'BEF_MAT' }) else return 0 } ~~~ Maybe ~~~js pols_maturity = if...
If you're willing to take Mosaic into OJS that works (with duckdb-wasm backend). You can use [ojs_define](https://quarto.org/docs/interactive/ojs/data-sources.html#python-and-r) to get Python data cleanly over to OJS at render time (ojs_define works...
Does precedence go the the first import? Thats probably reasonable. Is processing order guaranteed? (I think in webpack it wasn't, but in standalone I think it should be)
or typescript, read: https://github.com/uwdata/mosaic/issues/312