I've tried and failed to convert the MultiFileSelector Param to into a widget that can be interacted with. From this tutorial, I have tried the following.
class CustomExample(param.Parameterized):
f = param.MultiFileSelector()
pn.Param(CustomExample.param, widgets={ 'f': pn.widgets.Multiselect})
But I get the error,
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
<ipython-input-11-bb344c131fb8> in <module>
5 #select_number = param.Selector(objects=[0, 1, 10, 100])
6
----> 7 pn.Param(CustomExample.param, widgets={ 'f': pn.widgets.Multiselect})
AttributeError: module 'panel.widgets' has no attribute 'Multiselect'
Any pointers will be great.