<div class="panel panel-default">
  <div class="panel-heading">
    <h3 class="panel-title">{{currentNode.title}}</h3>
  </div>
  <table class="table table-striped">
    <tbody>
      <tr>
        <th trspan="name"></th>
        <td>
          <input class="form-control" ng-model="currentNode.title" />
        </td>
      </tr>
      <tr>
        <th trspan="type"></th>
        <td>
          <select class="form-control" ng-model="currentNode.data.type">
            <option ng-repeat="item in _findContainer().select" ng-selected="item.k===currentNode.data.type" value="{{item.k}}">{{item.v}}</option>
          </select>
        </td>
      </tr>
      <tr>
        <th trspan="label"></th>
        <td>
          <input class="form-control" ng-model="currentNode.data.label" />
        </td>
      </tr>
      <tr>
        <th trspan="logo"></th>
        <td>
          <input class="form-control" ng-model="currentNode.data.logo" />
        </td>
      </tr>
      <tr>
        <th trspan="level"></th>
        <td>
          <input class="form-control" ng-model="currentNode.data.level" />
        </td>
      </tr>
      <tr>
        <th trspan="activationrule"></th>
        <td>
            <input class="form-control" ng-model="currentNode.data.rule" />
        </td>
      </tr>
      <tr>
        <th trspan="registerextra"></th>
        <td class="form-horizontal">
          <input type="checkbox" class="form-control checkbox-inline" ng-model="currentNode.data.register" />
        </td>
      </tr>
      <tr>
        <th trspan="registerrule"></th>
        <td>
            <input class="form-control" ng-model="currentNode.data.regrule" />
        </td>
      </tr>
    </tbody>
  </table>
</div>

<div class="panel panel-default">
  <div class="panel-heading">
    <h4 class="panel-title" trspan="overPrm"></h4>
  </div>
  <table class="table">
    <tr ng-repeat="t in currentNode.data.over">
      <td>
        <input class="form-control" ng-model="t[0]" />
      </td>
      <td>
        <input class="form-control" ng-model="t[1]" />
      </td>
      <td>
        <span class="link text-danger glyphicon glyphicon-minus-sign" ng-click="del(currentNode.data.over,$index)"></span>
        <span ng-if="$last" class="link text-success glyphicon glyphicon-plus-sign" ng-click="menuClick({title:'newSfOver'})"></span>
      </td>
    </tr>
  </table>
</div>
<script type="text/menu">
[{
  "title": "newSfOver",
  "icon": "plus-sign"
},{
  "title": "deleteEntry",
  "icon": "minus-sign"
}]
</script>