Menu widget not correctly updated on web console

Hi,

when option list of a select widget is changed, menu is not correctly updated in web console
for exemple, if menu options are : 1, 2, 3, 4, then updating option list with options A, B will give a menu with options A, B, 3, 4
select options are updated correctly on iOS & android
I’m using python blynklib V1.0.0 (linux), method blynk.set_property() to set labels of select widget virtual pin

can you please confirm ?

thank you
Bruno

@Oleksii-QA could you check this issue?

Hello @brunog

I didn’t understand your case. Please explain in more detail.
You talk about 1, 2, 3, 4, options in widget, but then you describe another options A, B.
Also please attach screenshot of your widget settings

1 Like

Hi Oleksii,
using python BlinkLib :

menu1 = [‘1’, ‘2’, ‘3’, ‘4’]
blynk.set_property(PIN_MENU, ‘labels’, *menu1)

will result as expected a menu with 4 options : 1, 2, 3, 4
then further in the code :

menu2 = [‘A’, ‘B’]
blynk.set_property(PIN_MENU, ‘labels’, *menu2)

will result a menu with 4 options : A, B, 3, 4 whereas a menu with 2 options A, B was expected

same code is working fine on smartphones