Embedded your tweet list in a window is easy with a basic html frame
1/ the window…
webix.ui({
move : true,
view : "window",
id : "winTwitter",
name : "winTwitter",
head : {
view:"toolbar", cols:[
{ view:"label", gravity : 7, label: "My tweets." },
{ view:"button", gravity: 1, type:"icon", icon:"fa fa-arrow-circle-down", align: 'center', click:"$$('winTwitter').hide();" }
]
},
position : "center",
height : 700,
autowidth : true,
body: {
view:"iframe", id:"frame-body", src:"ui/twitter.html"
}
});
2/ the frame (html) - you’ll get the widget via the https://dev.twitter.com/docs/embedded-timelines
<!DOCTYPE html>
<html lang="fr">
<head>
<title>MyApp</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<a class="twitter-timeline" href="https://twitter.com/JPVay" data-widget-id="486840052882743296"></a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
</body>
</html>
Hope this could help…