You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs-aspnet/styles-and-layout/sass-theme-builder.md
+8-2Lines changed: 8 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -65,7 +65,7 @@ To customize an existing theme, use the following Sass Theme Builder features:
65
65
1. Color swatches—Contains predefined color palettes that you can apply to all components in your application.
66
66
1. Default—Provides the applicable color customization options.
67
67
1. Selected Components—List of components to include in the preview and the final CSS bundle.
68
-
1. Download—Downloads the archive that holds the generated style files after the customization completes. When you click the button, a dialog appears and prompts you to name your theme.
68
+
1. Download—Downloads the archive that holds the generated style files after the customization completes. When you click the button, a dialog appears and prompts you to name your theme. The archive contains a css, scss and a json file. The json file contains information on the modified variables of the customized theme.
69
69
70
70
**Figure 3: Available options for customization**
71
71
@@ -74,9 +74,15 @@ To customize an existing theme, use the following Sass Theme Builder features:
74
74
To upload an existing theme you have previously created:
75
75
76
76
1. On the initial Sass Theme Builder pane, select **Import Theme**.
77
-
1. Upload the `variables.scss` file which contains your current modifications of the customized theme. As a result, the selected components and styling elements load.
77
+
1. Upload the `MyThemeName.json` file which contains information on the modified variables of the customized theme. As a result, the selected components and styling elements load.
78
78
1. Start customizing your theme.
79
79
80
+
> Previous version of the Sass Theme Builder required the upload of the `variables.scss` file which contains the modifications of the customized theme. If you need to customize a theme generated with a previous version of the Sass Theme Builder, you can:
81
+
82
+
> * Download a theme from the new version,
83
+
> * Update the generated json with the variable values from your scss file and
84
+
> * Upload the json to the Sass Theme Builder to continue customization.
Copy file name to clipboardExpand all lines: docs/controls/scheduling/scheduler/timezones.md
+72Lines changed: 72 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -99,6 +99,78 @@ The following example demonstrates how to bind the Scheduler to UTC dates when t
99
99
</script>
100
100
````
101
101
102
+
## Schedulers with a timezone option set
103
+
When the `timezone` option is set the events in the Scheduler will be displayed with respect to the configuration, regardless of the local timezone.
104
+
105
+
> The **kendo.timezones.min.js** file must be included in order to use timezones other than "Etc/UTC".
106
+
107
+
> The **timezone** option will not affect events if the widget's data source is initialized separately. In this case set the [schema.timezone](/api/javascript/data/schedulerdatasource/configuration/schema.timezone) option directly.
108
+
109
+
In the example below, the event will be displayed in the **Europe/Berlin** timezone. It will be displayed as scheduled for 4:00pm, regardless of your location.
## Schedulers with a startTimezone and endTimezone option
140
+
141
+
The startTimezone and endTimezone of each single event can be used to define which is the start and end timezone of the client where the event will be displayed. The example below demonstrates how events could be displayed starting at different time depending on the startTimezone and endTimezone configured.
0 commit comments