[bokeh] MultiSelect Highlight

Dears,

I have two multiSelect widgets:

I would like to highlight the element on the second multiSelect (without selecting it) based on the selection of the first multiSelect.

versionMultiSelect_1 = MultiSelect(title=“Versions:”, value=[“raw_data”], options=[‘raw_data’, ‘xxxxxxxxxxxxxx’])

versionMultiSelect_2 = MultiSelect(title=“Versions:”, value=[“raw_data”], options=[‘raw_data’, ‘xxxxxxxxxxxxxx’ ])

versionMultiSelect_1.on_change(‘value’, version_select_change)

def version_select_change(attrname, old, new):

version_MultiSelect2.**value **= [‘raw_data’]

value will do the work, however it will select the ''raw_data" attribute.

Is it possible to do it without selecting it?

Regards,

Rodrigo Correa