svghmi/widget_back.ysl2
author Edouard Tisserant
Mon, 31 Aug 2020 13:54:08 +0200
branchsvghmi
changeset 3049 4ac68ec9786f
parent 2958 895d3f2b1786
child 3232 7bdb766c2a4d
permissions -rw-r--r--
Attempt to workaround problem reported about empty plc.xml after unrelated crash. Now, if etree model is corrupted in a way tostring() would generate an empty string, exception prevents saving.
// widget_back.ysl2

template "widget[@type='Back']", mode="widget_class"
    ||
    class BackWidget extends Widget{
        on_click(evt) {
            if(jump_history.length > 1){
               jump_history.pop();
               let [page_name, index] = jump_history.pop();
               switch_page(page_name, index);
            }
        }
        init() {
            this.element.setAttribute("onclick", "hmi_widgets['"+this.element_id+"'].on_click(evt)");
        }
    }
    ||