当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript validation.group方法代码示例

本文整理汇总了TypeScript中knockout.validation.group方法的典型用法代码示例。如果您正苦于以下问题:TypeScript validation.group方法的具体用法?TypeScript validation.group怎么用?TypeScript validation.group使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在knockout.validation的用法示例。


在下文中一共展示了validation.group方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: constructor

 constructor() {
     super();
     this.loading = ko.observable(false);
     this.operations = ko.observableArray<OperationData>([]);
     this.from = ko.observable<string>();
     this.to = ko.observable<string>();
     this.errors = ko.validation.group(this);
 }
开发者ID:online-poker,项目名称:poker-html-client,代码行数:8,代码来源:operationshistorypage.ts

示例2: constructor

    constructor() {
        super();
        this.oldpassword = ko.observable<string>().extend({ required: true });
        this.password = ko.observable<string>().extend({ required: true });
        this.confirmpassword = ko.observable<string>().extend({ required: true });

        this.errors = ko.validation.group(this);
    }
开发者ID:online-poker,项目名称:poker-html-client,代码行数:8,代码来源:changepasswordpage.ts

示例3: constructor

 constructor() {
     super();
     this.login = ko.observable<string>();
     this.email = ko.observable<string>();
     this.errors = ko.validation.group(this);
     this.validationModel = ko.validatedObservable(this);
     this.errorMessage = ko.observable<string>();
     this.loading = ko.observable(false);
 }
开发者ID:online-poker,项目名称:poker-html-client,代码行数:9,代码来源:forgetpasswordpopup.ts

示例4: constructor

 constructor() {
     super();
     this.token = ko.observable<string>().extend({ required: true });
     this.password = ko.observable<string>().extend({ required: true });
     this.confirmPassword = ko.observable<string>().extend({ required: true });
     this.errors = ko.validation.group(this);
     this.validationModel = ko.validatedObservable(this);
     this.errorMessage = ko.observable<string>();
     this.loading = ko.observable(false);
 }
开发者ID:online-poker,项目名称:poker-html-client,代码行数:10,代码来源:continueforgetpasswordpopup.ts

示例5: constructor

 constructor() {
     this.buyin = ko.observable<number>().extend({ required: appConfig.tournament.enabled, validatable: true });
     this.ticketCode = ko.observable<string>().extend({ required: appConfig.game.seatMode, validatable: true });
     this.tableView = ko.observable<TableView>();
     this.accountTotal = ko.observable<number>(0);
     this.loading = ko.observable<boolean>(false);
     this.tableName = ko.observable<string>();
     this.minBuyin = ko.observable<number>(0);
     this.maxBuyin = ko.observable<number>(0);
     this.minBet = ko.observable<number>(0);
     this.maxBet = ko.observable<number>(0);
     this.errors = ko.validation.group(this);
     this.validationModel = ko.validatedObservable(this);
     this.errorMessage = ko.observable<string>();
     this.processing = ko.observable(false);
     this.allowUsePersonalAccount = ko.observable(appConfig.joinTable.allowUsePersonalAccount);
     this.allowTickets = ko.observable(appConfig.joinTable.allowTickets);
 }
开发者ID:online-poker,项目名称:poker-html-client,代码行数:18,代码来源:addmoneypopup.ts


注:本文中的knockout.validation.group方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。