$renderInput

renders html for the input

string $renderInput(object obj,string html,id id);
objobjectinput configuration
htmlstringinner html of the input
ididunique id
stringhtml string with full code of input

Example

var id = webix.uid();
var html = "some html content"
var text = input.$renderInput(input.config, html, id);

Details

Not purposed for direct calls

Can be used in custom view to redefine html content of the input.

Back to top