museumsvictoria / nodel

A digital media control system for museums and galleries
nodel.io
60 stars 17 forks source link

<dynamicbuttongroup> does not support `showvalue` attribute #339

Open justparking opened 1 month ago

justparking commented 1 month ago

e.g. this doesn't work (i.e hides the buttons regardless of the Projector Input value):

<dynamicbuttongroup  showevent="Projector Input" showvalue="HD1" class="btn-default" data="IPTV-ChannelsList" join="IPTV-ChannelSelected" />

but this does (i.e. show the buttons when Projector Input value is HD1) where a <group> is used instead:

<group showevent="Projector Input" showvalue="HD1">
  <dynamicbuttongroup  class="btn-default" data="IPTV-ChannelsList" join="IPTV-ChannelSelected"/>
</group>