While menu button is a bit taller than normal, header is chopped into half.
HTML:
<style type="text/css">
.TreeCCS {width: 900px; height: 250px;}
</style>
<div ng-controller="ctrlMyTree">
<br />ANGULAR
<div id="afad" ui-grid="grdMyTree" ui-grid-tree-view class="TreeCCS">
</div>
</div>
.js:
var aIS = angular.module("app", ["ui.grid", "ui.grid.treeView"]);
aIS.controller("ctrlMyTree", function ($scope, $http)
{
$scope.grdMyTree= { enableGridMenu: true, showTreeExpandNoChildren: true, enableTreeView: true, };
Node and leaf levels are not defined yet, following this official tutorial but using dynamic json to load data. Works if Take out all tree-related.
ui.grid.js = 3.2.9. What am I missing here?
