multiple click events fired in activelist view

Hi
I have created view “activelist” with some buttons added in html template.
Some times when I click on button. multiple onclick events gets fired. what should i check?

Hi,

Could you provide a snippet of the issue?

var article_form =
            [
                { id: "title_input", view: "textarea", label: "Title", labelAlign: "left", labelPosition: "top",height:80, width: 600,placeholder: "Enter a Title",inputHeight:40 },
                { id: "add_ticker",  view: "textarea", label: "Ticker", height: 80, width: 600, labelAlign: "left", labelPosition: "top", placeholder: "eg. INTC,MSFT", inputHeight: 40 },
                { id: "data_input", view: "textarea", height: 800, width: 700,label: "Post", placeholder: "Type article here",labelPosition: "top", css: "data_area" },
                {
                    cols:  [
                            { id: "art_save_button", view: "button", value: "Save", width: 200, click: save_button_clicked },
                            { id: "art_post_button", view: "button", value: "Post", width: 200, click: post_button_clicked }
                          ]
                }
            ];

            article_layout_obj = webix.ui(
                {
                    container: article_post_layout,
                    borderless: true,
                    css: "article_layout",
                    height:1100,
                    rows:
                            [
                                { view: "form", scroll: false, width: 1000, elements: article_form }
                            ]
                    
                });

it is happening when I switch back to this view from another view,I am using webix UI v.3.1.2