當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript knockout.validation類代碼示例

本文整理匯總了TypeScript中knockout.validation的典型用法代碼示例。如果您正苦於以下問題:TypeScript validation類的具體用法?TypeScript validation怎麽用?TypeScript validation使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了validation類的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的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

示例6:

		{url: 'register', params: {page: 'register-page'}},
		{url: 'profile', params: {page: 'profile-page'}},
		{url: 'forgot-password', params: {page: 'forgot-password-page'}},
		{url: 'reset-password', params: {page: 'reset-password-page'}}
	]
});

// Register the SystemJS loader.
ko.components.loaders.unshift(es6Loader);

// Validation
ko.validation.init({
	grouping : { deep: true, observable: true }, 
	decorateInputElement: true, 
	parseInputAttributes: true, 
	decorateElementOnModified: false, 
	messagesOnModified: false,
	errorElementClass: 'has-error',
    errorMessageClass: 'help-block'},
	true);

/* Pages */
ko.components.register('home-page', {
	template: {
		require: 'components/home-page/home.html!text'
	},
	viewModel: {
		require: 'components/home-page/home'
	}
});
開發者ID:robertsundstrom,項目名稱:express-knockout-spa,代碼行數:30,代碼來源:startup.ts


注:本文中的knockout.validation類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。