icon button in column DataTable

{ "id": "total", header:[{ text: "<button type='button' style='height:30px;width:30px;' class='webix_icon_button'><span class='webix_icon mdi mdi-file-document-box-outline'></span></button>Всего" }]  }

Есть кнопка в шапке таблицы, обработка нажатия -

onHeaderClick: function (id, e, node) {
                                        if (e.target.className === "webix_icon mdi mdi-file-document-box-outline") {
                                            webix.message('outline');
                                        }

                                        if (e.target.className === "webix_icon mdi mdi-file-document-box-multiple") {
                                            webix.message('multiple');
                                        }
                                    }

Нормально обрабатывает только Chrome

Firefox не обрабатывает webix.message, хотя в условие попадает.
IE 11 вообще не отображает кнопок-иконок в шапке.

И можно ли в данном случае проверку делать не по классу, а по ID нажатого элемента?