Best way to show popup guidance?

Hello there…

How to get popup below an editor? http://webix.com/snippet/9c2b9596 I want the popup show when the editor started on specific column…

Thank you…

in case someone looking for answer, I use jquery offset to find the position of .webix_dt_editor

You can use popup.show(node); to show popup next to some html element. For editor it will be like next

    { view:"datatable", autoConfig:true, data:grid_data, editable:true, on:{
      onAfterEditStart:function(){
        var editor = this.getEditor();
        popup.show(editor.node);
      }
    }}

http://webix.com/snippet/a5a036f6

Wow! such an elegant solution! Thank you!