I’m starting a new app with webix and angular js. My prototype must have a header docked at the top, left and right sides. I can do that easily but I’m unable to remove the little white space around the header view. I would like to achieve the same result like this sample: http://docs.webix.com/samples/03_menu/07_menu_toolbar.html.
Here my code:
app.controller("solutionController", function ($scope) {
var header = { type:"header", template:"App header" };
//config object
$scope.config = {
rows:[ header
]
};
});