Minimal Webix/Ng

by dirkk0

HTML

<script src="http://cdn.webix.io/edge/webix.js"></script>
<link rel="stylesheet" href="http://cdn.webix.io/edge/skins/metro.css">
<div ng-app="webixApp">
    <div webix-ui type="space">
        <div height="35">Header {{app}}</div>
        <div view="cols" type="wide" margin="10">
            <div width="200">
                <input type="text" placeholder="Type something here" ng-model="app">
            </div>
            <div view="resizer"></div>
            <div view="tabview">
                <div header="Tab1">1. Some content here</div>
                <div header="Tab2">2. Other content here</div>
            </div>
        </div>
        <div height="35">Footer</div>
    </div>
</div>

JavaScript

var app = angular.module('webixApp', ["webix"]);