Falko Schindler
Falko Schindler
On #4045 we just discovered a workaround. Setting `LOOPBACK = True` for input elements on dialogs fixes the wrong model value after re-opening the dialog. But it can re-introduce #287,...
Good point, @jojje! I noticed these warnings a while ago, but couldn't get rid of them. And because they are usually hidden, I stopped thinking about them. But it would...
I can't reproduce this problem. It seems to have been fixed upstream. Let's close this issue!
Ooops, I closed this issue by mistake. With `prod_js=False` these warnings still occur. @evnchn Sure, they are harmless. But if anyone has an idea how to get rid of them,...
Yes, I also couldn't get this to work. The only workaround I found is registering a custom `warnHandler`: ```js app.config.warnHandler = (msg, vm, trace) => { if (msg.startsWith('Failed to resolve...
I reopened this issue because it hasn't been solved yet. But I tagged it as "feature" instead of "bug" since this is more about an enhancement for the dev experience...
Ok, you're starting to convince me that support for pandas (or polars) dataframes should be improved. Calling some column transformation every time the data is updated from a dataframe is...
Very good questions... > What's the behavior in this case? Do you merge columns from `columns` and `df`? My intuition was that we copy `columns` first, and then iterate over...
I just experimented with observable collections, but noticed a fundamental problem: If you pass a list `rows` to `ui.table` where it is wrapped in an `ObservableList`, any changes to `table.rows`...
Thanks again for this pull request, @tmlmt! I kept thinking about it, but couldn't find a way merge rows and columns from different sources while still allowing to modify the...