Skip to content

Commit eefe67b

Browse files
adding docs builder config and content fixes
1 parent 4b492aa commit eefe67b

File tree

17 files changed

+562
-24
lines changed

17 files changed

+562
-24
lines changed

all-pages.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
publish: false
2+
published: false
33
layout: null
44
---
55

components/editor/prosemirror-schema/modify-default-schema.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ The below example shows how to:
3434

3535
>tip The Editor in this example uses the [`Div` edit mode]({%slug editor-edit-modes-iframe%}), so the style for the `<hr>` element is applied. If you use the default [`Iframe` edit mode]({%slug editor-edit-modes-div%}), you have to plug the styles with JavaScript as shown in [this example]({%slug editor-prosemirror-plugins%}).
3636
37-
@[template](/_contentTemplates/editor/general.md#prosemirror-support-disclaimer)
38-
3937
>caption Modify the default ProseMirror Schema
4038
4139
````CSHTML

components/gantt/state.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ The `OnStateInit` and `OnStateChanged` events are raised by the Gantt so you can
5151
* `OnStateInit` fires when the Gantt is initializing and you can provide the state you load from your storage to the `State` field of its event arguments.
5252

5353
* `OnStateChanged` fires when the user makes a change to the Gantt state (such as sorting, filtering, editing, expanding parents and so on). The `State` field of the event argument provides the current Gantt state so you can store it. The `PropertyName` field of the event arguments indicates what changed.
54-
* @[template](/_contentTemplates/gantt/state.md#statechanged-possible-prop-values)
5554
* We recommend that you use an **`async void`** handler for the `OnStateChanged` event in order to reduce re-rendering and to avoid blocking the UI update while waiting for the service to store the data. Doing so will let the UI thread continue without waiting for the storage service to complete.In case you need to execute logic that requires UI update, use **`async Task`**.
5655
* Filtering always resets the current page to 1, so the `OnStateChanged` event will fire twice. First, `PropertyName` will be equal to `"Page"`, and the second time it will be `"FilterDescriptors"`. However, the `State` field of the event argument will provide correct information about the overall Gantt state in both event handler executions.
5756

components/gauges/arc/scale.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ If you set the `Reverse` (`bool`) parameter to `true` the values of the scale wi
143143

144144
## Additional Customization
145145

146-
@[template](/_contentTemplates/gauges/additional-customization.md#arc-gauge-additional-customizationn)
146+
@[template](/_contentTemplates/gauges/additional-customization.md#arc-gauge-additional-customization)
147147

148148
### Example: Enable the MinorUnit ticks
149149

components/scheduler/events.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -608,8 +608,6 @@ To implement appointment editing, the scheduler exposes the `OnCreate`, `OnDelet
608608
The `OnItemClick` event fires when the user clicks on an appointment in the Scheduler.
609609
It provides a `SchedulerItemClickEventArgs` object to the event handler and you can get the `Item` property and cast it to your own model. If you set the `ShouldRender` property to `true`, the component will re-render. This can be useful if you need to change the Scheduler parameters or state during the event execution and especially if you need to execute `async` logic in the event handler.
610610

611-
@[template](/_contentTemplates/grid/common-link.md#rowclick-args)
612-
613611
>caption Use the OnItemClick event for the scheduler
614612
615613
````CSHTML
@@ -683,8 +681,6 @@ It provides a `SchedulerItemClickEventArgs` object to the event handler and you
683681
The `OnItemDoubleClick` event fires when the user double clicks on an appointment in the Scheduler.
684682
It provides a `SchedulerItemDoubleClickEventArgs` object to the event handler and you can get the `Item` property and cast it to your own model. If you set the `ShouldRender` property to `true`, the component will re-render. This can be useful if you need to change the Scheduler parameters or state during the event execution and especially if you need to execute `async` logic in the event handler.
685683

686-
@[template](/_contentTemplates/grid/common-link.md#rowclick-args)
687-
688684
>caption Use the OnItemDoubleClick event for the scheduler
689685
690686
````CSHTML
@@ -758,8 +754,6 @@ It provides a `SchedulerItemDoubleClickEventArgs` object to the event handler an
758754
The `OnItemContextMenu` event fires when the user right clicks on an appointment in the Scheduler.
759755
It provides a `SchedulerItemContextMenuEventArgs` object to the event handler and you can get the `Item` property and cast it to your own model. If you set the `ShouldRender` property to `true`, the component will re-render. This can be useful if you need to change the Scheduler parameters or state during the event execution and especially if you need to execute `async` logic in the event handler.
760756

761-
@[template](/_contentTemplates/grid/common-link.md#rowclick-args)
762-
763757
>caption Use the OnItemContextMenu event for the scheduler
764758
765759
````CSHTML

components/stockchart/types/candlestick.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ To add a `Candlestick` chart to a stock chart component::
121121

122122
Set the color - a valid CSS, RGB, RGBA color - of the series when the `OpenField` is greater than the `CloseField` by setting the `DownColor` property of the `StockChartSeries`. This can be passed through the data model and bound to the `DownColorField`.
123123

124-
@[template](/_contentTemplates/stockchart/link-to-basics.md##color-field-column-ohlc-candlestick)
124+
@[template](/_contentTemplates/stockchart/link-to-basics.md#color-field-column-ohlc-candlestick)
125125

126126
@[template](/_contentTemplates/stockchart/link-to-basics.md#gap-and-spacing)
127127

components/stockchart/types/column.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ Each data item is denoted with a label. You can control and customize them throu
121121

122122
The color of a series is controlled through the `Color` property that can take any valid CSS color (for example, `#abcdef`, `#f00`, or `blue`). The color control the fill color of the area.
123123

124-
@[template](/_contentTemplates/stockchart/link-to-basics.md##color-field-column-ohlc-candlestick)
124+
@[template](/_contentTemplates/stockchart/link-to-basics.md#color-field-column-ohlc-candlestick)
125125

126126
@[template](/_contentTemplates/stockchart/link-to-basics.md#gap-and-spacing)
127127

components/stockchart/types/ohlc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ To add a `OHLC` chart to a stock chart component:
114114

115115
## OHLC Chart Specific Appearance Settings
116116

117-
@[template](/_contentTemplates/stockchart/link-to-basics.md##color-field-column-ohlc-candlestick)
117+
@[template](/_contentTemplates/stockchart/link-to-basics.md#color-field-column-ohlc-candlestick)
118118

119119
@[template](/_contentTemplates/stockchart/link-to-basics.md#gap-and-spacing)
120120

0 commit comments

Comments
 (0)