llai
1
Hi, i m ludo and i try to learn webix , ( he is so powerfull many thx for you work )
just i want indicate and error on this pages :
http://webix.com/quick-start/introduction.html#!/7
you have forgot the " " for add_row
{ view:“button”, value:“Add”, width:70, click:add_row },
maksim
2
Actually it is not a bug, click handler accepts both string with global function name and function itself.
So if you have
function add_row(){ some(); }
later you can assign it to the button directly
{ view:"button", click:add_row }