renders html for the input
obj | object | input configuration |
html | string | inner html of the input |
id | id | unique id |
string | html string with full code of input |
var id = webix.uid();
var html = "some html content"
var text = input.$renderInput(input.config, html, id);
Not purposed for direct calls
Can be used in custom view to redefine html content of the input.
Back to top