Angular uses the ngx-Bootstrap datepicker component and implements localization/internationalization.

Source: Internet
Author: User
Tags export class

Datepicker component API: http://ngx-bootstrap.com/#/datepicker

 

Step1. install ngx-Bootstrap:

NPM install ngx-Bootstrap -- save

Step 2. Introduce related files:

Introduce the relevant CSS file in styles in angular. JSON, and introduce the corresponding file as needed.

 "styles": [              "node_modules/ngx-bootstrap/datepicker/bs-datepicker.scss"            ],

Introduce the component ts file into the module File

Import {bsdatepickermodule} from 'ngx-Bootstrap/datepicker '; import {definelocale} from 'ngx-Bootstrap/Chronos'; import {zhcnlocale} from 'ngx-Bootstrap/locale '; definelocale ('zh-cn', zhcnlocale); // The calendar displays Chinese @ ngmodule ({imports :[... bsdatepickermodule. forroot ()], declarations: [...], providers: [...]})

 

Component component

Import {bslocaleservice, bsdatepickerconfig} from 'ngx-Bootstrap/datepicker'; export class insurancebuycomponent implements oninit {bsconfig: Partial <bsdatepickerconfig>; locale = 'zh-cn '; constructor (Private FB: formbuilder, private localeservice: bslocaleservice) {} ngoninit (){
// Date configuration this. bsconfig = object. Assign ({}, {dateinputformat: 'yyyy-MM-DD ', showweeknumbers: false });
// Use Chinese characters for the date. This. localeservice. Use (this. locale );}}

 

In HTML

<Input type = "text" Placeholder = "select the Effective Date" bsdatepicker formcontrolname = "effectivetime" placement = "bottom" [mindate] = "effectivemindate" [maxdate] = "effectivemaxdate" [bsconfig] = "bsconfig">

 

Angular uses the ngx-Bootstrap datepicker component and implements localization/internationalization.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.