Closed wx4stg closed 3 months ago
This seems to result from pn.bind not monitoring non-panel classes: https://github.com/wx4stg/pyxlma-explorer/blob/36c1b7776e44b4b3ee601b3200cf27326cb7c48f/lma_data_explorer.py#L591
datashade_switch is monitored because it's a panel button, but self.filter_history is a numpy array and therefore not tracked... I think this is what Param is supposed to handle??????
datashade_switch
self.filter_history
fixed by 137f4e5
This seems to result from pn.bind not monitoring non-panel classes: https://github.com/wx4stg/pyxlma-explorer/blob/36c1b7776e44b4b3ee601b3200cf27326cb7c48f/lma_data_explorer.py#L591
datashade_switch
is monitored because it's a panel button, butself.filter_history
is a numpy array and therefore not tracked... I think this is what Param is supposed to handle??????