Jean-Luc Stevens

Results 288 comments of Jean-Luc Stevens

The new JSON serialization support (https://github.com/holoviz/param/pull/414) goes a long way and does most of the heavy lifting imho. That said, that work needs to support serializing/deserializing entire parameterized classes before...

Thanks for reporting this issue! Here are my my param and panel versions: ![image](https://user-images.githubusercontent.com/890576/112850049-45b21380-906f-11eb-8133-6aa1e473025a.png) And with these versions I am able to switch between the subobjects and trigger events for...

Actually I noticed some errors in my terminal so things may not be working quite right after all, even with my versions: ``` ERROR:tornado.application:Exception in callback functools.partial(, ) Traceback (most...

As discussed in #520, the appropriate `full_schema` is not defined until the conventions needed to represent parameterized objects (including nesting) are decided upon. I do agree that once we have...

I will have a closer look at this shortly but looking at the schema Philipp just posted, I have to agree...it is definitely weird to have a schema that includes...

Thanks for the correction, though either way, these two things shouldn't be mixed together like that!

> all serialization funcs are expected to return a dict, but panda's to_json returns a string. It is possible that I would need to run the code to understand the...

I've thought about this a bit more and I'm fine with the `pd.read_json(df.to_json(orient='table'), orient='table')` approach which I now think is better than the current approach. Here are my observations now...

I was wondering about this today when I saw: ``` nosetests testwatch.py ......................WARNING:param.SimpleWatchExample00023: No such watcher Watcher(inst=SimpleWatchExample(a=0, b=0, c=0, d=0, e=False, f=False, name='SimpleWatchExample00023'), cls=, fn=, mode='args', onlychanged=True, parameter_names=('a',), what='value', queued=False)...

Definitely an interesting idea! Being able to use parameters without inheritance is not something I would recommend when starting from scratch but as a way to help migrate to param...