AngularJS UI Bootstrap DatePicker无法正常运行

时间:2014-10-31 18:40:33

标签: javascript angularjs twitter-bootstrap angular-ui angular-bootstrap

我的指令定义如下:

模板

<div class="date-picker">
    <div class="row">
        <div class="col-md-6">
            <label for="{{datePickerId}}">{{labelText}}</label>
            <p class="input-group">
                <input type="text"
                       id="{{datePickerId}}"
                       class="form-control"
                       datepicker-popup="{{format}}"
                       ng-model="dt"
                       is-open="opened"
                       datepicker-options="dateOptions"
                       disabled="disabled"
                       ng-required="true"
                       close-text="Close" />
                <span class="input-group-btn">
                    <button type="button" class="btn btn-default" ng-click="open($event)"><i class="glyphicon glyphicon-calendar"></i></button>
                </span>
            </p>
        </div>
    </div>
</div>

指令

//TypeScript

module MyApp.Directives {
    /** Scope for Messaging directive. */
    export interface IMaDatePickerScope extends ng.IScope {
        dt: Date;
        today(): void;
        clear(): void;
        disabled(date, mode): boolean;
        open($event): void;
        opened: boolean;
        dateOptions;
        formats: string[];
        format: string;
    }


    export class MaDatePicker implements ng.IDirective {
        restrict = "E";
        templateUrl = TEMPLATES + 'ma-date-picker.html';
        replace = true;
        transclude = true;
        scope = {
            labelText: '@',
            datePickerId: '='
        }
        link = (scope: IMaDatePickerScope) => {
            scope.today = () => {
                scope.dt = new Date();
            }
            scope.today();

            scope.clear = () => {
                scope.dt = null;
            }
            scope.disabled = (date: Date, mode) => {
                return (mode == 'day' && (date.getDay() === 0 || date.getDay() === 6)); //disable Saturday and Sunday
            }
            scope.open = ($event) => {
                $event.preventDefault();
                $event.stopPropagation();
                scope.opened = true;
            }

            scope.dateOptions = {
                formatYear: 'yy',
                startingDay: 1
            }

            scope.formats = ['yyyy-MM-dd', 'dd-MMMM-yy', 'yyyy/MM/dd', 'dd.MM.yyyy', 'shortDate'];
            scope.format = scope.formats[0];            
        }
        controller = ($scope: IMaDatePickerScope) => {

        }
    }
}

它来自the DatePicker section here,应该像该页面上显示的弹出版本一样运行。但是,每当我单击日历按钮以启动指令时,日历都会以破碎的方式显示。此外,当我点击弹出日历中的“下个月”箭头时,日历会一直向左扩展。我的代码中有什么问题吗?我没有添加任何样式,因为根据网站似乎没有任何样式,但我想在检查现有样式之前检查代码是否有任何明显错误。

1 个答案:

答案 0 :(得分:0)

在没有看到你可能包含哪些CSS文件的情况下,我无法确切地说出罪魁祸首是什么,尽管如果你使用Twitter Bootstrap以及除Angular UI Bootstrap之外的其他一些CSS库,你很可能会遇到样式冲突来自一个或多个其他CSS文件。我发现隔离这些问题的最简单方法是使用Chrome浏览器开发人员工具检查CSS覆盖及其来源,并查看冲突的确切位置,然后更新我的自定义CSS以修复它们。我不建议修改像Twitter Bootstrap这样的OTB CSS库以保持可维护性。始终使用您自己的自定义CSS文件。我确实在日期选择器上遇到了类似的问题,需要花一点时间才能找到它们的位置。这是使用多个CSS库的危险,如果确实是你的情况。快乐狩猎!