svghmi/widget_back.ysl2
author Edouard Tisserant
Thu, 26 Mar 2020 14:21:52 +0100
branchsvghmi
changeset 2902 1fcb50af0335
parent 2901 svghmi/widget_jump.ysl2@3f5194bba67d
child 2912 d320367eb2ad
permissions -rw-r--r--
SVGHMI: added Back widget.
// widget_back.ysl2

template "widget[@type='Back']", mode="widget_defs" {
    param "hmi_element";

    |     on_click: function(evt) {
    |         console.log("Back !");
    |         if(jump_history.length > 1){
    |            jump_history.pop();
    |            let [page_name, index] = jump_history.pop();
    |            switch_page(page_name, index);
    |         }
    |     },
    |     init: function() {
    |         this.element.setAttribute("onclick", "hmi_widgets['«$hmi_element/@id»'].on_click(evt)");
    |     },
}