LiterallyCanvas Component

Hi Webix teams,

Any other component

to integrate LiterallyCanvas http://literallycanvas.com/
to easier drawing inside webix jet ?
or additional option: GitHub - devforth/painterro: Painterro - JavaScript painting plugin

Hello @finzaiko,

You can integrate most of the available third-party libraries, provided you can get all of the needed dependecies in order. However, in the case of LiterallyCanvas library it doesn’t seem feasible, since a minified file of the library doesn’t exist, and the library itself requires React to work.

As for the alternative option (Painterro), it does look like this library can be integrated within a Webix component. Please take a look at the following example: https://snippet.webix.com/pz3akije.

You can read more about custom integrations here - DIY - Custom Integration Pattern, UI Integration Extensions Webix Docs.

Great !
Thanks @Dzmitry that’s why I keep use Webix

Hi Webix Team,

How can I add new event base on external component event in webix
https://snippet.webix.com/3ze3wqkc

I wanna call save button from other component

  { view:"button", value:"Save", width:100, align:"center", click: function () {
$$("painterro").saveHandler();
}

Hi @finzaiko ,

You can create custom events and invoke them from other components by using the callEvent method.

Please, check the snippet with the basic example: Code Snippet