You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have encountered a bug in webix that I can only reproduce in electron environment:
Put a toolbar (or any view) and a data table in rows. Datatable must have a small number of rows so it does not fill all vertical space.
With your mouse, scroll the data table and then click on any row to select it
webix throws the following error:
Uncaught TypeError: Cannot read property 'id' of undefined
at h.nl (webix_debug.js:22077)
at h.kl (webix_debug.js:22153)
at hl (webix_debug.js:22013)
at h.bl (webix_debug.js:22102)
at h.<anonymous> (webix_debug.js:248)
at h.iA (webix_debug.js:21329)
at h.Yc (webix_debug.js:21384)
at h.Sc (webix_debug.js:6743)
at HTMLDivElement.<anonymous> (webix_debug.js:248)
To reproduce:
Create a new folder, let's call it scroll
Cd to scroll
run npm init and choose defaults
run npm install --save-dev electron
run npm install webix
edit file package.json and add "start": "electron ." to "scripts"
create a file index.js and add the following content:
Hello,
I have encountered a bug in webix that I can only reproduce in electron environment:
To reproduce:
scroll
scroll
npm init
and choose defaultsnpm install --save-dev electron
npm install webix
package.json
and add"start": "electron ."
to"scripts"
index.js
and add the following content:index.html
with the following content:app.js
with the following content:Now run the application using
npm start
from the command line and use the steps described at the beginning te reproduce the bug.The text was updated successfully, but these errors were encountered: