Skip to content

Commit fe61166

Browse files
committed
docs(api): Update Server-side API for R1 2022
1 parent 8aed16f commit fe61166

18 files changed

+1577
-4
lines changed

api/server/Telerik.Web.UI.Gauge/RadialScale.md

+5
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,11 @@ Gets or sets the interval between the minor divisions.
5454

5555
Defines a collection of gauge ranges.
5656

57+
### RangeSize `Nullable`1`
58+
59+
Gets or sets the width of the range indicators of the RadialGauge.
60+
If the value is null, it will default to size equal to half of the MinorTick size.
61+
5762
### Reverse `Boolean`
5863

5964
Gets or sets a bool value indicating whether the direction of the scale values will be reversed.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
---
2+
title: Telerik.Web.UI.DraggableClientEvents
3+
page_title: Telerik.Web.UI.DraggableClientEvents
4+
description: Telerik.Web.UI.DraggableClientEvents
5+
---
6+
7+
# Telerik.Web.UI.DraggableClientEvents
8+
9+
Defines the client events handlers.
10+
11+
## Inheritance Hierarchy
12+
13+
* System.Object
14+
* Telerik.Web.StateManager : IMarkableStateManager, IStateManager
15+
* Telerik.Web.UI.DraggableClientEvents : IDefaultCheck
16+
17+
## Properties
18+
19+
### OnDrag `String`
20+
21+
Fired while dragging. The drag event represents a jQuery mousemove event and contains all the event data of the jQuery Event Object.
22+
23+
### OnDragCancel `String`
24+
25+
Fired when item drag is canceled by pressing the Escape key. The dragcancel event represents a jQuery keyup event and contains all the event data of the jQuery Event Object.
26+
27+
### OnDragEnd `String`
28+
29+
Fired when item drag ends. The dragend event represents a jQuery mouseup event and contains all the event data of the jQuery Event Object.
30+
31+
### OnDragStart `String`
32+
33+
Fired when item drag starts. The dragstart event represents a jQuery mousedown event and contains all the event data of the jQuery Event Object.
34+
35+
### OnHold `String`
36+
37+
Fired before the dragStart event. The hold event represents a jQuery mousedown event and contains all the event data of the jQuery Event Object.
38+
39+
### OnInitialize `String`
40+
41+
Fired when the control is initialized.
42+
43+
### OnLoad `String`
44+
45+
Fired when the control is loaded on the page.
46+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
title: Telerik.Web.UI.DraggableCursorOffsetSettings
3+
page_title: Telerik.Web.UI.DraggableCursorOffsetSettings
4+
description: Telerik.Web.UI.DraggableCursorOffsetSettings
5+
---
6+
7+
# Telerik.Web.UI.DraggableCursorOffsetSettings
8+
9+
The options that will be used for the popup initialization. For more details about the available options refer to Popup documentation.
10+
11+
## Inheritance Hierarchy
12+
13+
* System.Object
14+
* Telerik.Web.StateManager : IMarkableStateManager, IStateManager
15+
* Telerik.Web.UI.DraggableCursorOffsetSettings : IDefaultCheck
16+
17+
## Properties
18+
19+
### Left `Decimal`
20+
21+
Specifies how to position the popup element based on anchor point. The value is space separated "y" plus "x" position.The available "y" positions are: - "bottom" - "center" - "top"The available "x" positions are: - "left" - "center" - "right"
22+
23+
### Top `Decimal`
24+
25+
Defines a jQuery selector that will be used to find a container element, where the popup will be appended to.
26+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
---
2+
title: Telerik.Web.UI.DraggableCursorOffsetSettingsConverter
3+
page_title: Telerik.Web.UI.DraggableCursorOffsetSettingsConverter
4+
description: Telerik.Web.UI.DraggableCursorOffsetSettingsConverter
5+
---
6+
7+
# Telerik.Web.UI.DraggableCursorOffsetSettingsConverter
8+
9+
Serialization JS converter class for DraggableCursorOffsetSettings
10+
11+
## Inheritance Hierarchy
12+
13+
* System.Object
14+
* System.Web.Script.Serialization.JavaScriptConverter
15+
* Telerik.Web.UI.ExplicitJavaScriptConverter
16+
* Telerik.Web.UI.DraggableCursorOffsetSettingsConverter
17+
18+
## Methods
19+
20+
### AddScript
21+
22+
Serialize the value as a script, not a string. Should be used alongside with
23+
24+
#### Parameters
25+
26+
#### state `System.Collections.Generic.IDictionary{System.String,System.Object}`
27+
28+
The state collection for the values
29+
30+
#### key `System.String`
31+
32+
The key in the JSON object
33+
34+
#### value `System.Object`
35+
36+
The value in the JSON obejct
37+
38+
#### Returns
39+
40+
`System.Void`
41+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
title: Telerik.Web.UI.DropTargetAreaClientEvents
3+
page_title: Telerik.Web.UI.DropTargetAreaClientEvents
4+
description: Telerik.Web.UI.DropTargetAreaClientEvents
5+
---
6+
7+
# Telerik.Web.UI.DropTargetAreaClientEvents
8+
9+
Defines the client events handlers.
10+
11+
## Inheritance Hierarchy
12+
13+
* System.Object
14+
* Telerik.Web.StateManager : IMarkableStateManager, IStateManager
15+
* Telerik.Web.UI.DropTargetAreaClientEvents : IDefaultCheck
16+
17+
## Properties
18+
19+
### OnDragEnter `String`
20+
21+
Fired when draggable moves over one of the drop targets. The dragenter event represents a jQuery mousemove event and contains all the event data of the jQuery Event Object.
22+
23+
### OnDragLeave `String`
24+
25+
Fired when draggable moves out of one of the drop targets. The dragleave event represents a jQuery mousemove event and contains all the event data of the jQuery Event Object.
26+
27+
### OnDrop `String`
28+
29+
Fired when draggable is dropped over one of the drop targets. The drop event represents a jQuery mouseup event and contains all the event data of the jQuery Event Object.
30+
31+
### OnInitialize `String`
32+
33+
Fired when the control is initialized.
34+
35+
### OnLoad `String`
36+
37+
Fired when the control is loaded on the page.
38+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
title: Telerik.Web.UI.DropTargetClientEvents
3+
page_title: Telerik.Web.UI.DropTargetClientEvents
4+
description: Telerik.Web.UI.DropTargetClientEvents
5+
---
6+
7+
# Telerik.Web.UI.DropTargetClientEvents
8+
9+
Defines the client events handlers.
10+
11+
## Inheritance Hierarchy
12+
13+
* System.Object
14+
* Telerik.Web.StateManager : IMarkableStateManager, IStateManager
15+
* Telerik.Web.UI.DropTargetClientEvents : IDefaultCheck
16+
17+
## Properties
18+
19+
### OnDragEnter `String`
20+
21+
Fired when draggable moves over the drop target. The dragenter event represents a jQuery mousemove event and contains all the event data of the jQuery Event Object.
22+
23+
### OnDragLeave `String`
24+
25+
Fired when draggable moves out of the drop target. The dragleave event represents a jQuery mousemove event and contains all the event data of the jQuery Event Object.
26+
27+
### OnDrop `String`
28+
29+
Fired when draggable is dropped over the drop target. The drop event represents a jQuery mouseup event and contains all the event data of the jQuery Event Object.
30+
31+
### OnInitialize `String`
32+
33+
Fired when the control is initialized.
34+
35+
### OnLoad `String`
36+
37+
Fired when the control is loaded on the page.
38+

api/server/Telerik.Web.UI/RadAsyncUpload.md

+1
Original file line numberDiff line numberDiff line change
@@ -371,6 +371,7 @@ When set to string.Empty, the files must be saved manually to the desired locati
371371
Sets how long temporary files should be kept before automatically deleting them.
372372
The property accepts TimeSpan values. The default value is 4 hours. More information regarding the TimeSpan structure can
373373
be found here - http://www.dotnetperls.com/timespan
374+
RadAsyncUpload1.TemporaryFileExpiration = New TimeSpan(2, 0, 0, 0, 0);
374375

375376
#### Remarks
376377
Note that when a postback occurs temporary files are either saved as permanent or removed.

0 commit comments

Comments
 (0)