admin管理员组文章数量:1346186
In the datepicker documentation there is an example of the popup calendar being controlled programatically by using the open()
and close()
methods like so:
<mat-form-field class="example-full-width">
<input matInput [matDatepicker]="picker" placeholder="Choose a date">
<mat-datepicker #picker></mat-datepicker>
</mat-form-field>
<button mat-raised-button (click)="picker.open()">Open</button>
One can also set the opened
property to true/false like so:
<button mat-raised-button (click)="picker.opened = true">Open</button>
I wonder if there is anyway to use this to get the calendar popup to stay permanently opened for the purpose of letting the user click around on different dates, and having those selection reflected in the input?
In the datepicker documentation there is an example of the popup calendar being controlled programatically by using the open()
and close()
methods like so:
<mat-form-field class="example-full-width">
<input matInput [matDatepicker]="picker" placeholder="Choose a date">
<mat-datepicker #picker></mat-datepicker>
</mat-form-field>
<button mat-raised-button (click)="picker.open()">Open</button>
One can also set the opened
property to true/false like so:
<button mat-raised-button (click)="picker.opened = true">Open</button>
I wonder if there is anyway to use this to get the calendar popup to stay permanently opened for the purpose of letting the user click around on different dates, and having those selection reflected in the input?
Share Improve this question asked Dec 11, 2017 at 20:40 MadCatm2MadCatm2 1,0015 gold badges26 silver badges41 bronze badges 2- You can implement the dateChange emitter to reopen the the datepicker when a date is selected. – Mehdi Commented Dec 11, 2017 at 21:32
- ehhh, I see. Could you help me with some implementation details? – MadCatm2 Commented Dec 11, 2017 at 21:50
2 Answers
Reset to default 8I guess you can try this :
<mat-form-field class="example-full-width">
<input matInput (dateChange)="reOpenCalendar()" [matDatepicker]="picker" placeholder="Choose a date">
<mat-datepicker #picker></mat-datepicker>
</mat-form-field>
<button mat-raised-button (click)="picker.open()">Open</button>
in your ponent ts/js file you need to declare a new method :
export class YourComponent{
@ViewChild('picker') picker;
//....
reOpenCalendar(){
let self = this;
setTimeout(
()=>{
self.picker.open();
},
50
);
}
}
This will introduce a flash effect as the date picker disappears and quickly reappears.
The other solution would be fork angular material datepicker ponent in your local project and introduce an Input property to disable the closing when a date is selected
The built-in datepicker control of Material library es with an internal Calendar ponent. You can use the following to have a calendar that is always open (without the input box but still works with date/month/year selection)
Read more about the calendar here:
https://onthecode.co.uk/angular-material-calendar-ponent/
本文标签: javascriptAngular Material datepicker manual openStack Overflow
版权声明:本文标题:javascript - Angular Material datepicker manual open - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743824430a2545375.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论