Segmented Button Popup

Hello,

is it possible to have a related popup to one specific segmented button in a segmented view, this means the popup should appear also just next to that certain segmented button?

Thanks,
Martin

Hi,

Please check the next snippet
https://snippet.webix.com/7gu7iep7

    { view:"segmented", options:["one", "two", "three"], click:function(id, e){
      webix.delay(function(){
        if (this.getValue() == "two"){
          $$("p1").show(e.target);
        }
      }, this);
    }}