Simon Høxbro Hansen

Results 143 comments of Simon Høxbro Hansen

I have seen the same error with this: ``` python import panel as pn import time import param class Test(param.Parameterized): button = param.Event() text = param.String() @param.depends("button", watch=True) def countdown(self):...

> Isn't that just a missing asyncio import ? Nope. It works fine until 20ish seconds after I close the browser. ``` python import panel as pn import asyncio import...

This seems to work for me: ``` python def cb(e): try: table._updating = True table.param.trigger('value') finally: table._updating = False ``` I noticed that the disappearing only happened when I was...

I was looking into this and stumbled on this thread https://github.com/quilljs/quill/issues/3359. About how quill.js (which TextEditor is based on) is no longer supported. It seems that [Summernote](https://summernote.org/examples/) could be a...

I don't favor `fixed_*` either but also liked it better than `hard_*`. Some suggestions for another name: pinned, immovable, locked, strict, firm.

When updating the documentation, I updated a small bug, which meant that the `start`/`end` of the `_slider` could exceed the `fixed_start` and `fixed_end`, as the following video show. This should...

> Can you elaborate? Would definitely be nice. The datetime will appear in the logging but only as a string. An example of the behavior mentioned can be seen here:...

I did not have any issue converting the string to datetime. The issues were with how Tabulator handled the datetime objects.

The picture [here](https://panel.holoviz.org/user_guide/Performance_and_Debugging.html#logs) should be updated with the new interface. The only way I can see how this can be done is by replacing it with a new URL, so...

My suggestion is setting `pn.extension(throttled=True)` or `pn.config.throttled=True`. This will make all sliders `value` to work like `value_throttled` when interacting with widgets, and therefore you can use `value` in your code.