WEBIX TEXTBOX + JQUERY.MASKMONEY

HOW CAN INTEGRATE WITH THE WEBIX JQUERY?
BUT SPECIFICALLY HOW CAN I USE JQUERY.MASKMONEY?

webix.ui({
container: “content”,
type: “space”,
width: 700,
borderless: true,
view: “form”, id: “Content”, elements:
[
{ view: “text”, id:“teste”}
]
});

        $('#teste').maskMoney();

TKS

The id you give to a Webix component is not its real DOM id. Moreover, Webix text control is more complicated than a simple input, so selector should look like this:

 $("div[view_id='teste'] input").maskMoney();