Hello,
I have this error :
[Violation] Added non-passive event listener to a scroll-blocking 'mousewheel' event. Consider marking event handler as 'passive' to make the page more responsive. See https://www.chromestatus.com/feature/5745543795965952
When i click on cell’s grid.
After tests it seems to be because of createInstance in myGridOnCellSelect()
myGridOnCellSelect(event: any): void {
let options = {
value: value,
template: template,
theme: 'energyblue'
};
var form = jqwidgets.createInstance('.listAttributes', 'jqxForm', options);
form.addEventHandler('formDataChange', (event: any) => {
console.log("test");
});
}
if i comment var form = jqwidgets.createInstance('.listAttributes', 'jqxForm', options);
the problem is resolved…
I don’t understand why i have this warning…
Do you know how can i resolve that?
Thanks a lot