Aleksander Chlebowski
Aleksander Chlebowski
I should be the one to write it.
### Minutes of discussion 28 March 2024 1. The fact that report bookmarks are so large may be due not solely to the content but also additional code required to...
Sounds good. Bear in mind, if initial expanding/collapsing the filter panel were decided by an attribute of the `teal_slices` object passed to `init`, it would be carried over with snapshots...
> Arbitral javascript doesn't help? > > Theoretically calling `hideSidebar()` in js should do the trick. Oddly, `hideSidebar` alone does not, more code is needed. Maybe it's a peculiarity of...
> I suspect this could be a problem of an initialization order. "sidebar" is created in a reactive context (insertUI) so any js call on init won't help. I guess...
I have questions: 1. Is the `parent`/`child` dichotomy a given or should we handle an arbitrary number of data sets within the one list? 2. Is the `id` column mandatory...
This: `i.e. a list of reactive (filtered) data specified in the filters argument`. Neither is `teal_data` a list of reactives, there is no `filters` argument any more, it was replaced...
Just to be clear, this will not be done before #669, sorrect?
Update: I was able to solve the issue in my very specific use case of running a `teal` app embedded but it cannot be generalized to a standalone app.
Update: this script will hide the filter panel on start of a normal, standalone `teal` app: ``` const observer = new MutationObserver(function() { if (document.getElementsByClassName("teal_secondary_col").length) { toggleFilterPanel(); observer.disconnect(); } });...