extjs ExtJ布局,在日期时间字段旁边显示时区

shstlldc  于 2022-11-04  发布在  其他
关注(0)|答案(1)|浏览(150)

我需要显示日期和时间字段,以及这些字段旁边的文本中显示的时区,如链接中所示
日期范围和日期时间字段

有人能帮助如何使用Ext3或Ext4实现上述字段吗?

inkz8wg9

inkz8wg91#

只需获取时区偏移量,然后获取匹配的时区。

Ext.application({
    name: 'Fiddle',

    launch: function () {
        const offset = new Date().getTimezoneOffset();

        Ext.Msg.show({
            icon: Ext.MessageBox.INFO,
            title: 'Timezone Offset',
            message: `the current timezone offset is: ${offset}`
        });
    }
});

相关问题