- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在创建 SharePoint Web 部件,每当我使用新的附加分页组件在 IE 中部署 Web 部件时,我都会收到此错误:
这是我的 MainController.js 文件:
(function () {
var module = angular.module('StarterProject', ['ngAnimate', 'ui.bootstrap']);
var MainController = function ($scope, StarterService, $log) {
//Pagination
$scope.parms = {};
$scope.searchTabs = {};
$scope.selectTier = 1;
$scope.itemsPPOptions = [10, 25, 50];
$scope.pager = {};
$scope.pager.currentPage = 1;
$scope.pager.itemsPerPage = 25;
$scope.pager.maxSize = 10;
var updatePage = function (oldval, newval) {
var begin = (($scope.pager.currentPage - 1) * $scope.pager.itemsPerPage)
var end = begin + $scope.pager.itemsPerPage;
if ($scope.UICS && $scope.UICS.length){
$scope.pager.filteredItems = $scope.UICS.slice(begin, end);
}
};
$scope.$watch('pager.currentPage + pager.itemsPerPage', function () {
updatePage();
});
$scope.setPage = function (pageNo) {
$scope.currentPage = pageNo;
}
$scope.pageChanged = function() {
$log.log('Page changed to: ' + $scope.currentPage);
}
//UICS
var onGetRegions = function (data) {
$scope.UICS = data;
};
var includeClosed = true;
$scope.UICS = {};
StarterService.GetRegions(includeClosed).then(onGetRegions, onGetRegions);
};
module.controller('MainController', MainController);
}());
这是我的 HTML:
<div data-ng-app="StarterProject">
<!--SCRIPTS-->
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.3/angular.js" type="text/javascript"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.3/angular-animate.js" type="text/javascript"></script>
<script src="/_layouts/15/Project3/js/MainController.js" type="text/javascript"></script>
<script src="/_layouts/15/Project3/js/StarterService.js" type="text/javascript"></script>
<script src="/_layouts/15/Project3/js/ui-bootstrap.min.js" type="text/javascript"></script>
<!--STYLE-->
<link href="/_layouts/15/Project3/styles/bootstrap.min.css" rel="stylesheet" />
<link href="/_layouts/15/Project3/styles/bootstrap-theme.min.css" rel="stylesheet" />
<link href="/_layouts/15/Project3/styles/DisplayTable.css" rel="stylesheet" />
<link href="/_layouts/15/Project3/styles/MainView.css" rel="stylesheet" />
<!--FONTS-->
<link href='https://fonts.googleapis.com/css?family=Josefin+Sans' rel='stylesheet' type='text/css' />
<div data-ng-controller="MainController">
<div class="StarterProject">
<div>
<table class="table-responsive">
<thead>
<tr>
<th>UIC </th>
<th>UIC KEY </th>
<th>ACTIVE NAME </th>
<th>UIC SHORT NAME </th>
<th>PARENT UIC KEY </th>
<th>PARENT UIC </th>
<th>SMC Region ID </th>
<th>REGION UIC </th>
<th>REGION UIC KEY </th>
<th>REGION NAME </th>
<th>HQ NAME </th>
<th>HQ UIC </th>
<th>HQ UIC KEY </th>
<th>BASE CMD IND </th>
<th>NOSC IND </th>
<th>USER NAME </th>
<th>UPDATED DT </th>
<th>JOB LOG ID </th>
<th>CREATED DT </th>
<th>PARENT NAME </th>
<th>INSTALLATION UIC </th>
<th>INSTALLATION NAME </th>
<th>INSTALLATION UIC KEY </th>
<th>SMC INSTALLATION UIC </th>
<th>SMC INSTALLATION NAME </th>
<th>BASE CMD SC NAME </th>
<th>INSTALLATION MAP COORDINATES </th>
<th>CLOSED IND </th>
<th>JOINT BASE IND </th>
<th>SERVICE ID </th>
</tr>
</thead>
<tbody>
<tr data-ng-repeat="base in filteredItems | limitTo: 100">
<td data-ng-bind="base.UIC" id="UIC"></td>
<td data-ng-bind="base.UIC_KEY" id="UIC_KEY"></td>
<td data-ng-bind="base.ACTV_NAME" id="ACTV_NAME"></td>
<td data-ng-bind="base.PARENT_UIC_KEY" id="PARENT_UIC_KEY"></td>
<td data-ng-bind="base.PARENT_UIC" id="PARENT_UIC"></td>
<td data-ng-bind="base.SMC_Region_ID" id="SMC_Region_ID"></td>
<td data-ng-bind="base.REGION_UIC" id="REGION_UIC"></td>
<td data-ng-bind="base.REGION_UIC_KEY" id="REGION_UIC_KEY"></td>
<td data-ng-bind="base.REGION_NAME" id="REGION_NAME"></td>
<td data-ng-bind="base.HQ_NAME" id="HQ_NAME"></td>
<td data-ng-bind="base.HQ_UIC" id="HQ_UIC"></td>
<td data-ng-bind="base.HQ_UIC_KEY" id="HQ_UIC_KEY"></td>
<td data-ng-bind="base.BASE_CMD_IND" id="BASE_CMD_IND"></td>
<td data-ng-bind="base.NOSC_IND" id="UICNOSC_IND_KEY"></td>
<td data-ng-bind="base.USER_NAME" id="USER_NAME"></td>
<td data-ng-bind="base.UPDATED_DT" id="UPDATED_DT"></td>
<td data-ng-bind="base.JOB_LOG_ID" id="JOB_LOG_ID"></td>
<td data-ng-bind="base.CREATED_DT" id="CREATED_DT"></td>
<td data-ng-bind="base.PARENT_NAME" id="PARENT_NAME"></td>
<td data-ng-bind="base.INSTALLATION_UIC" id="INSTALLATION_UIC"></td>
<td data-ng-bind="base.INSTALLATION_NAME" id="INSTALLATION_NAME"></td>
<td data-ng-bind="base.INSTALLATION_UIC_KEY" id="INSTALLATION_UIC_KEY"></td>
<td data-ng-bind="base.SMC_INSTALLATION_UIC_KEY" id="SMC_INSTALLATION_UIC_KEY"></td>
<td data-ng-bind="base.SMC_INSTALLATION_UIC" id="SMC_INSTALLATION_UIC"></td>
<td data-ng-bind="base.SMC_INSTALLATION_NAME" id="SMC_INSTALLATION_NAME"></td>
<td data-ng-bind="base.BASE_CMD_SC_NAME" id="BASE_CMD_SC_NAME"></td>
<td data-ng-bind="base.INSTALLATION_MAP_COORDINATES" id="INSTALLATION_MAP_COORDINATES"></td>
<td data-ng-bind="base.Closed_Ind" id="Closed_Ind"></td>
<td data-ng-bind="base.Joint_Base_Ind" id="Joint_Base_Ind"></td>
<td data-ng-bind="base.Service_ID" id="Service_ID"></td>
</tr>
</tbody>
</table>
</div>
<uib-pagination total-items="UICS.length" ng-model="pager.currentPage" max-size="pager.maxSize"
items-per-page="pager.itemsPerPage" boundary-links="true" rotate="false" previous-text="‹"
next-text="›" first-text="«" last-text="»"></uib-pagination>
<div data-ng-show="false" data-ng-include="'/_layouts/15/Project3/styles/Entry.html'"></div>
</div>
</div>
我真的不知道这个错误意味着什么或如何解决它。我在 StackOverflow 上检查了许多类似的问题,但没有找到一致的解决方案或专门适合我并允许我使用 Angular UI Bootstrap 的分页指令的答案。
最佳答案
检查此问题的答案:ui-bootstrap-tpls failed to load template
尝试包含 ui.bootstrap 的 tpls 版本
src="assets/bower_components/angular-bootstrap/ui-bootstrap-tpls.js"
关于javascript - 错误 : [$compile:tpload] Failed to load template: uib/template/pagination/pagination. html(HTTP 状态:404 未找到),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38621214/
uib-Popover 意外关闭,其中包含 popover-template、“outsideClick”触发器和 uib-Datepicker:事实上,当单击日期选择器本身时,popover 意外关
我正在使用 uib-datepicker-popup 和由“mouseenter”触发的 uib-popover。当我将鼠标悬停在日期选择器元素上时,弹出窗口显示得很好。但是,如果我选择一个日期,弹出
版本: Bootstrap 3.5.5 AngularJS 1.4.7 AngularUIB 0.14.3 我在标签页中使用 uib-datepicker(使用 uib-tabset)
Tab 1 Tab 2 Tab 3 Tab 4 没有显示任何选项卡,当我切换到 Bootstrap 选项卡集时,
我正在使用带有以下 html 的 uib-datepicker: 它看起来像
我正在使用 angular-ui 模式。当我关闭模态时,模态框淡出并向上淡出,背景淡出。这是期望的行为。 但是,当我打开模态框时,虽然模态框淡入淡出,但背景只是出现而没有淡入。我无法确定原因。 这是打
我使用angular-ui-bootstrap的0.14.2版本。我无法在弹出窗口中显示行返回。 我使用popover-html指令和一个字符串,例如 Limite inférieureLimite
它是uib bootstrap插件。默认激活第一个选项卡。我需要将第二个选项卡设置为默认事件状态。请尽快帮助我。
我正在使用 angularjs 并将数据绑定(bind)到表,并使用 uib 分页将分页添加到表,在表中我添加复选框来检查和取消选中行,这里我需要的是当我单击标题、行中的全部检查时应该只检查当前页面,
我的 uib-popover 没有隐藏在 outsideClick 上。 我已经关注了这些 stackOverflow 问题, uib-popover not closing o
我试图在打开 Accordion 时触发一个事件。该事件应该在 Accordion 打开时触发,而不是在关闭时触发。 HTML: I can have mar
我想通过单击按钮从内部关闭 Accordion 。我试图将 isOpen 设置为 false 但它不起作用。有没有办法在单击按钮时关闭它?谢谢。 这里是傻瓜:https://plnkr.co/edit
在哪个 html 弹出框上定位标签 Menu 包含关闭按钮的 ng-Template,单击弹出窗口应在其上关闭。 Close
我有一个 uib-popover,当前显示 4000 个字符。如何在该弹出窗口中仅显示 100 个字符(如 textoverflow 属性)?请查看随附的屏幕截图enter image descrip
有人可以建议我在下面的 html 中缺少什么来将子菜单添加到 bootstrap 下拉列表吗? Action Split button! a
我已经使用 uib-tabset 实现了选项卡。选项卡对齐存在问题。正如您在下图中看到的,我的“当前”选项卡向左移动,它正在移出卡片,在“当前”和“即将到来”之间留下不舒服的空间。我希望两个选项卡都与
有一个 uib-tabset 和一个等待 uib-tabset 内输入更改的指令,已到达该指令,但当它必须触发作用域时。$broadcast 不会调用该函数。 查看
演示 here . tooltip显示不全,因为我觉得没有地方可以显示,但是有什么其他办法可以实现吗?我不能把位置改成相对的,必须 overflow hidden 。
有没有办法让 uib-progressbar 的文本居中对齐。我尝试过 position:absolute。但我想在 UI 网格中显示进度条列表。是一个可滚动的内容。虽然滚动文本保留在其位置,但进度条
从 ui-bootstrap 的 0.14 版开始,它看起来像 uib-tooltip-html(以前是:tooltip-html-unsafe)不再工作了......或者不是我以前让它工作的方式。
我是一名优秀的程序员,十分优秀!