exec

выполняет строку с кодом в любой момент работы приложения

any exec(string code);

Parameters

codestringкод, который нужно выполнить

Returns

anythe completion value of evaluating the given code

Example

webix.exec("myobj = 123");
alert(myobj);

Details

If the completion value is empty, undefined is returned.

Наверх