This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div id="datagrid-template" class="ui segment auto-overflow" :class="{ 'loading': loading }"> | |
<table id="{{ id }}" class="table table-hover table-condensed table-ultra-condensed datagrid no-margin"> | |
<thead> | |
<tr> | |
<th class="datagrid-toggle-column" v-if="allowSelection"> | |
<div class="checkbox check-success no-margin"> | |
<input type="checkbox" id="allrows" name="allrows" v-model="selectAll"> | |
<label for="allrows" class="no-margin"></label> | |
</div> |