exec

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

any exec(string code);
codestringкод, который нужно выполнить
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.

Наверх