communiating data to outside of iframe

Hello,

I am new to Webix, and pretty new to javascript development in general. I do however have a software engineering background. I am looking at using webix within an iframe. I wonder, are there any known ways to communicate data to the app outside of the iframe?

thanks,

Dan

You can use the same logic as in case of common javascript

//use "parent" to access any js object in the parent window from iframe
var data = parent.data;