default: "<div class=\"ngeo-grid-table-container\">\n <table\n float-thead=\"$ctrl.floatTheadConfig\"\n ng-model=\"$ctrl.configuration.data\"\n class=\"table table-bordered table-striped table-hover\"\n >\n <thead class=\"table-header\">\n <tr>\n <th\n ng-repeat=\"columnDefs in $ctrl.configuration.columnDefs\"\n ng-click=\"$ctrl.sort(columnDefs.name)\"\n ng-bind-html=\"columnDefs.name | ngeoTrustHtml | translate\"\n >\n <i ng-show=\"$ctrl.sortedBy !== columnDefs.name\" class=\"fa-solid fa-fw\"></i>\n <i\n ng-show=\"$ctrl.sortedBy === columnDefs.name && $ctrl.sortAscending === true\"\n class=\"fa-solid fa-caret-up\"\n ></i>\n <i\n ng-show=\"$ctrl.sortedBy === columnDefs.name && $ctrl.sortAscending === false\"\n class=\"fa-solid fa-caret-down\"\n ></i>\n </th>\n </tr>\n </thead>\n <tbody>\n <tr\n ng-repeat=\"attributes in $ctrl.configuration.data\"\n ng-class=\"['row-' + $ctrl.configuration.getRowUid(attributes), $ctrl.configuration.isRowSelected(attributes) ? 'ngeo-grid-active': '']\"\n ng-click=\"$ctrl.clickRow(attributes, $event)\"\n ng-mousedown=\"$ctrl.preventTextSelection($event)\"\n >\n <td\n ng-repeat=\"columnDefs in $ctrl.configuration.columnDefs\"\n ng-bind-html=\"attributes[columnDefs.name] | removeCDATA | ngeoTrustHtmlAuto\"\n ></td>\n </tr>\n </tbody>\n </table>\n</div>"