ng-grid未显示网格,即8

时间:2014-02-17 15:10:16

标签: c# angularjs internet-explorer-8 ng-grid

我试图在客户的项目中使用ng-grid显示一些数据, 一切都很好,除了IE8(IE11的模拟模式和win 7的VM通过browserstack),这里的网格没有渲染(只有容器 - div来保存列和行)和异常我进入控制台是:

“无法获取未定义或空引用的属性'宽度'”

“无法获取未定义或空引用的属性'scrollTop'”

在基于.net的项目中使用带角度(版本1.2.3)的ng-grid(版本2.0.7)。 (项目中使用的jQuery版本是1.11。)

由于IE中的控制台并没有真正给我更多关于痕迹的信息,我想我会在stackoverflow上问这个精彩的人,如果有人面临类似的问题,或者任何人都知道在哪里看。

和平并提前感谢您抽出时间!

前端代码(已添加) 这是前端代码的一部分

<div data-ng-controller="benefitsController" >
    <div id="topOrderBox-list" class="topOrderBox">

        <div class="left">
            <div class="boxHeader">
                Sök tjänst
            </div>
            <ul>
                <li>
                    <label class="">
                        <b>Frisökning</b></label>
                    <span class="help" title="Fritextsökning: Här kan du anger olika saker ">[?]</span> </li>
                <li>
                    <input class="freeSearch search" type="text" placeholder="Skriv ett sökord" ng-model="model.filterText" />
                </li>
                <li>
                    <label>
                        <b>Leverantörer</b></label>
                    <span class="help" title="Leverantörer: Här kan du söka efter en viss leverantör">[?]</span> </li>
                <li>
                    <select class="partnersOption" ng-model="model.Partner" ng-options="partner.PartnerName for partner in model.Partners | orderBy:'PartnerName'">
                        <option value="">Välj en leverantör</option>
                    </select>
                </li>
                <li>
                    <label>
                        <b>Välj en typ av förmån</b></label>
                    <span class="help" title="Typ av förmån: Här kan du söka på olika typer av förmåner. ">[?]</span> </li>
                <li>
                    <select class="subCategoryOption" data-ng-model="model.SubCategory" data-ng-options="subCategory.SubCategoryName for subCategory in model.SubCategories | orderBy:'SubCategoryName'">
                        <option value="">Välj en typ av förmån</option>
                    </select>
                </li>
            </ul>
        </div>
        <div class="right">
            <div data-ng-grid="gridOptions" class="gridStyle"></div>
        </div>


        <div data-ng-if="!(selectedRow[0].IsOrderable)" class="benefitDetails overflow" data-ng-show="selectedRow.length > 0">
            <ul>
                <li>
                    <img id="partnerImageId" class="partnerImg" data-ng-src="@Url.Action("Show", "Image")/{{selectedRow[0].PartnerImageId}}" alt="Saknar tjänst bild"/>
                    <img id="benefitImageId" class="benefitImg" data-ng-src="@Url.Action("Show", "Image")/{{selectedRow[0].ImageId}}" alt="Saknar tjänst bild"/>

                    <h2>{{selectedRow[0].PartnerName}} {{selectedRow[0].BenefitName}} {{selectedRow[0].TimeSpanString}}, {{selectedRow[0].City}}</h2>
                </li>

            </ul>
        </div>


    </div>

    <div class="benefitDetails overflow padding-top" ng-show="selectedRow.length > 0">


            <div class="spanDiv">
                <span ng-bind-html="selectedRow[0].CommonDescription"></span>
                <br />
                <br />
                <span class="taxDescription" ng-bind-html="selectedRow[0].TaxDescription"></span>
            </div>

        </div>

    <div class="bottomLinksBox">
        <a data-ng-controller="sendOrderBenefitController" data-ng-click="goToTop()" class="up" href="#">Upp &uarr;</a>

            <a data-ng-if="selectedRow[0].IsOrderable" class="buttonLink rightBox" id="goOnLink" ng-href="@Url.Action("OtherBenefitsOrdering")/{{selectedRow[0].EmployerBenefitId}}" >Gå vidare till beställning</a>

    </div>
    <div class="contractBox">
        <p></p>
    </div>
</div>

以下是控制器中的一些代码

adderasApp.controller('benefitsController', ['$scope', 'benefitsService', function ($scope, benefitsService) {

    $scope.model = benefitsService.Benefits.get({ isHealthCare: 'false' }, function () {
        $scope.EmployerBenefits = $scope.model.EmployerBenefits;
    });

    $scope.selectedRow = [];

    $scope.filterOptions = {
        filterText: ''
    };



    $scope.gridOptions = {
        data: 'EmployerBenefits',
        columnDefs: [
            { field: 'PartnerName', displayName: 'Leverantör' },
            { field: 'City', displayName: 'Ort' },
            { field: 'BenefitName', displayName: 'Tjänst' },
            { field: 'SubCategoryName', displayName: 'Kategori' },
            { field: 'PriceString', displayName: 'Pris' },
            { field: 'TimeSpanString', displayName: 'Tid' },
        ],
        multiSelect: false,
        selectedItems: $scope.selectedRow,
        filterOptions: $scope.filterOptions,
        headerClass: 'otherBenefitSearchHeader'
        //headerRowTemplate: '<div ng-style="{\'z-index\': col.zIndex()}" ng-class="{\'col_select\': col.showSortButtonDown(), \'col_select_up\': col.showSortButtonUp() }" ng-repeat="col in visibleColumns()" class="ngHeaderCell col{{$index}}" ng-header-cell></div>'
    };

    $scope.$watch('[ model.Partner, model.SubCategory, model.filterText, model.CommonDescription]', function (newValue, oldValue) {


        var searchText = [];
        var isOrderable;

        if (newValue[0] !== undefined && newValue[0] != null) {
            searchText.push(newValue[0].PartnerName);
        }
        if (newValue[1] !== undefined && newValue[1] != null) {
            searchText.push(newValue[1].SubCategoryName);
        }
        if (newValue[2] !== undefined && newValue[2] != null) {
            searchText.push(newValue[2]);
        }

        if (newValue[3] !== undefined && newValue[3] != null) {
            searchText.push(newValue[3].CommonDescription);
        }

        $scope.filterOptions.filterText = searchText.join(';');



    }, true);

}]);

尝试过跟随http://docs.angularjs.org/guide/ie

P.S。来自工厂/服务的数据从同一个域获取数据,数据似乎可以通过,其他不使用ng-grid的页面,但是其他服务似乎工作正常。

无论如何,再次感谢您投入时间和精力! 和平

2 个答案:

答案 0 :(得分:1)

我找到了解决方案! :) 基本上它的IE8非常挑剔读取js和。 我在阅读https://github.com/angular-ui/ng-grid/issues/543后解决了这个问题 所以在ng-grid的控制器代码中,我删除了gridOptions columnDefs对象中的最后一个参数。如:

$scope.gridOptions = {
    data: 'EmployerBenefits',
    columnDefs: [
        { field: 'PartnerName', displayName: 'Leverantör' },
        { field: 'City', displayName: 'Ort' },
        { field: 'BenefitName', displayName: 'Tjänst' },
        { field: 'SubCategoryName', displayName: 'Kategori' },
        { field: 'PriceString', displayName: 'Pris' },
        { field: 'TimeSpanString', displayName: 'Tid' }
    ],
    multiSelect: false,
    selectedItems: $scope.selectedRow,
    filterOptions: $scope.filterOptions,
    headerClass: 'otherBenefitSearchHeader'
    //headerRowTemplate: '<div ng-style="{\'z-index\': col.zIndex()}" ng-class="{\'col_select\': col.showSortButtonDown(), \'col_select_up\': col.showSortButtonUp() }" ng-repeat="col in visibleColumns()" class="ngHeaderCell col{{$index}}" ng-header-cell></div>'
};

无论如何和平并感谢投入的人! ;)

答案 1 :(得分:0)

Angular在10之前的IE有问题。请this guide让它运行起来。也就是说,Angular和IE8有一些very difficult issues to get around

对于我的应用程序,我不得不为HTML5支持,Modernizr,完整jQuery和HTML5控件的填充程序添加填充程序。只是为了支持IE9而又回来了。它充其量只是参差不齐。