functions blocked by mjpg stream in window

Hi,

I try to view a mjpg stream in a window like this:

webix.ui({
			    view:"window",
                            height:300,
			    width:330,
			    left:50, top:50,
			    move:true,
			    head:"RoboCam",
				body:{
				template:"<img class='contact_img' src='http://IP:10000/?action=stream'>"
				}
			}).show();

The stream shows but it seems to block other functions.

I strarted with this demo: http://docs.webix.com/samples/10_window/01_init.html

When I add the stream to the movable window, the close button on the otehr window doesn’t function anymore.
What woudl be the correct approach to implement this?

Thanks
Robert

While you are placing a valid HTML content in the template - component must work correctly. Is mjpg stream requires some special plugin in browser ?

There are no special plugins required in most browsers.
The assume that the main issue is the never ending load process of the image. It seems that this blocks the webix ui.

Webix components do not await data loading for the inner content. They just add the define d html to the page, without any expectation.

I will try to reconstruct problem locally.