我想知道bsdate选择器总是打开的。所以它在启动时已经打开,点击后仍保持打开状态。在旧版本中,为其提供了内联版本。在当前版本中,我找不到任何示例,只有我发现开关是打开,
<input type="text" class="form-control" bsDatepicker #dp="bsDatepicker" [(bsValue)]="dts.dt" [bsConfig]="bsConfig" [minDate]="minDate" [maxDate]="maxDate" [isOpen]=true>
或者
import { BsDatepickerConfig, BsLocaleService } from 'ngx-bootstrap/datepicker';
public bsConfig: Partial<BsDatepickerConfig>;
this.bsConfig = Object.assign({}, {
containerClass: 'theme-orange',
isDisabled: true,
isOpen: true,
showWeekNumbers: true
});
但两者都不起作用。你对我有想法或怎么做?
是否可以在组件中获取对日期选择器的引用,然后从那里打开它。如果是这样,怎么样?
非常感谢。
延
答案 0 :(得分:0)
这是一个古老的问题,但是您中有些人可能想知道内联日期选择器已在ngx-bootstrap的 3.1.5 版本中实现。
这是源代码中的组件