Open Closed

Timezone setting feature for AngularUI #5855


User avatar
0
linhhn@arius.vn created

https://github.com/abpframework/abp/issues/16628 The timezone setting feature seems to be available in version 7.4-preview However, is there support for angularUI yet?

  • ABP Framework version: v7.4-preview
  • UI Type: Angular
  • Database System: EF Core MySQL
  • Tiered (for MVC) or Auth Server Separated (for Angular): yes
  • Exception message and full stack trace:
  • Steps to reproduce the issue:

3 Answer(s)
  • User Avatar
    0
    sinan created
    Support Team Angular Developer

    Yes, we have implemented in Angular

  • User Avatar
    0
    linhhn@arius.vn created

    I have updated version 7.4-rc4 but still do not see AngularUI has a timezone setting screen Is 7.4 final going to be implemented? And can you tell me the release date of 7.4 final?

  • User Avatar
    0
    sinan created
    Support Team Angular Developer

    Set ClockOptions kind to UTC

    Configure<AbpClockOptions>(options =>
    {
        options.Kind = DateTimeKind.Utc;
    });
    

    If you implement the above code you will see on the ui. you can read more about timing in abp

    By the way i will create documentation for time zone feature asap. Thank you for the awareness

Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11