如何在NativeScript对话框中使用DatePicker

时间:2019-05-24 06:45:06

标签: angular nativescript angular2-nativescript

我在DatePicker应用之一中有一个NativeScript/Angular,如下所示。

<StackLayout class="m-x-10 form" [formGroup]="myForm">
<DockLayout stretchLastChild="true">
        <Label text="Date" class="m-x-auto m-y-auto" dock="left"></Label>
        <StackLayout class="input-field">
          <DatePicker loaded="onDatePickerLoaded" formControlName="transDate" minDate="{{ minDate }}" maxDate="{{ maxDate }}"></DatePicker>
        </StackLayout>
      </DockLayout>
</StackLayout>

我想在对话框上显示DatePicker并将结果分配给formgroup属性,如下所示。

<TextField formControlName="transDate" (tap)="showDatePicker()"></TextField>

showDatePicker() {
    let options = {
      title: "Transaction Date",
      message: "Select Date",
      cancelButtonText: "Cancel",
      actions: // need to show DatePicker here
    };
    action(options).then((result) => {
      if (result !== 'Cancel') {
        this.myForm.controls['transDate'].setValue(result);
      }
    });
  }

我该怎么做?

正如@Manoj建议添加tns plugin add nativescript-modal-datetimepicker并将其文件移动到app文件夹并从新路径导入一样,按我的预期工作。

现在我已根据文档在<item name="android:datePickerMode">calendar</item>中更改了App_Resources/Android/values-21/styles.xml,但仍只显示了微调器。

3 个答案:

答案 0 :(得分:0)

我已经为您here创建了示例。 您需要使用custom Dialog

还有ShowPicker函数()

let options: ModalDialogOptions = {
            viewContainerRef: this.viewContainerRef
        };

       this.modalService.showModal(DialogContent, options)
    .then((dialogResult: string) => {
 this.myForm.controls['transDate'].setValue(result);
 this.result = dialogResult})

您可以在关闭的回叫中传递选定的日期。

答案 1 :(得分:0)

尝试使用nativescript-modal-datetimepicker插件

tns plugin add nativescript-modal-datetimepicker

答案 2 :(得分:0)

对于那些在 2 年后来到这个帖子的人来说,使用 NativeScript 的官方日期选择器是一个更好的选择:

https://github.com/NativeScript/plugins/tree/master/packages/datetimepicker

我犯了一个错误,先尝试了 nativescript-modal-datetimepicker 插件,不幸的是它在 iOS 14 上崩溃了,而且作者似乎没有积极修复问题。