egroupware_official/api/js/etemplate/Et2Select/Select/Et2SelectTimezone.ts

17 lines
503 B
TypeScript
Raw Normal View History

import {Et2Select} from "../Et2Select";
import {Et2StaticSelectMixin, StaticOptions} from "../StaticOptions";
2023-09-14 19:48:30 +02:00
import {cleanSelectOptions} from "../FindSelectOptions";
export class Et2SelectTimezone extends Et2StaticSelectMixin(Et2Select)
{
constructor()
{
super();
2023-09-14 19:48:30 +02:00
this.fetchComplete = StaticOptions.timezone(this, {other: this.other ?? []}).then((options) =>
{
this.set_static_options(cleanSelectOptions(options));
})
}
}
customElements.define("et2-select-timezone", Et2SelectTimezone);