Skip to content

Commit 8252653

Browse files
committed
docs(api): add FloatingActionButton server-side API
1 parent b1df3a1 commit 8252653

7 files changed

+454
-0
lines changed

Diff for: api/server/Telerik.Web.UI/AlignOffset.md

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
title: Telerik.Web.UI.AlignOffset
3+
page_title: Telerik.Web.UI.AlignOffset
4+
description: Telerik.Web.UI.AlignOffset
5+
---
6+
7+
# Telerik.Web.UI.AlignOffset
8+
9+
Specifies the horizontal and vertical offset of the FloatingActionButton.
10+
11+
## Inheritance Hierarchy
12+
13+
* System.Object
14+
* Telerik.Web.StateManager : IMarkableStateManager, IStateManager
15+
* Telerik.Web.UI.AlignOffset : IDefaultCheck
16+
17+
## Properties
18+
19+
### X `Double`
20+
21+
Specifies the initial horizontal offset of the FloatingActionButton. Numeric values are treated as pixels. String values can specify pixels, percentages, ems, or other valid values.
22+
23+
### Y `Double`
24+
25+
Specifies the initial vertical offset of the FloatingActionButton. Numeric values are treated as pixels. String values can specify pixels, percentages, ems or other valid values.
26+

Diff for: api/server/Telerik.Web.UI/AlignOffsetConverter.md

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
---
2+
title: Telerik.Web.UI.AlignOffsetConverter
3+
page_title: Telerik.Web.UI.AlignOffsetConverter
4+
description: Telerik.Web.UI.AlignOffsetConverter
5+
---
6+
7+
# Telerik.Web.UI.AlignOffsetConverter
8+
9+
Serialization JS converter class for AlignOffset
10+
11+
## Inheritance Hierarchy
12+
13+
* System.Object
14+
* System.Web.Script.Serialization.JavaScriptConverter
15+
* Telerik.Web.UI.ExplicitJavaScriptConverter
16+
* Telerik.Web.UI.AlignOffsetConverter
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.FloatingActionButtonClientEvents
3+
page_title: Telerik.Web.UI.FloatingActionButtonClientEvents
4+
description: Telerik.Web.UI.FloatingActionButtonClientEvents
5+
---
6+
7+
# Telerik.Web.UI.FloatingActionButtonClientEvents
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.FloatingActionButtonClientEvents : IDefaultCheck
16+
17+
## Properties
18+
19+
### OnClick `String`
20+
21+
Fires when the user clicks on a the FloatingActionButton.**Note: when using items configuration, clicking on the FloatingActionButton will open the speed-dial list popup.
22+
23+
### OnCollapse `String`
24+
25+
Fires when the speed-dial popup is closed and its animation is finished.**Note: this event is triggered only when using items configuration.
26+
27+
### OnExpand `String`
28+
29+
Fires when the speed-dial popup is opened and its animation is finished.**Note: this event is triggered only when using items configuration.
30+
31+
### OnInitialize `String`
32+
33+
Fired when the FloatingActionButton control is initialized.
34+
35+
### OnLoad `String`
36+
37+
Fired when the FloatingActionButton control is loaded on the page.
38+
+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
---
2+
title: Telerik.Web.UI.FloatingActionButtonItem
3+
page_title: Telerik.Web.UI.FloatingActionButtonItem
4+
description: Telerik.Web.UI.FloatingActionButtonItem
5+
---
6+
7+
# Telerik.Web.UI.FloatingActionButtonItem
8+
9+
Specifies the speed-dial items that will be rendered in a popup container anchored to the FloatingActionButton.**Note: when using the items configuration, clicking on the FloatingActionButton will open the popup containing the speed-dial list.
10+
11+
## Inheritance Hierarchy
12+
13+
* System.Object
14+
* Telerik.Web.StateManager : IMarkableStateManager, IStateManager
15+
* Telerik.Web.UI.FloatingActionButtonItem
16+
17+
## Properties
18+
19+
### ClientTemplate `String`
20+
21+
Specifies the template used to render the contents of the speed-dial item.The fields which can be used inside the template are: text String - the label of the item (if configured). or icon String - the icon specified for this step (if configured)..
22+
23+
### CssClass `String`
24+
25+
Specifies a set of CSS classes for the speed-dial item.
26+
27+
### Enabled `Boolean`
28+
29+
Specifies whether the Item is enabled or not. By default all items are enabled.
30+
31+
### Icon `String`
32+
33+
Specifies the name for an existing icon in a Kendo UI theme that is rendered in the speed-dial item.See the Web Font Icons help article for more details on Kendo UI icons.
34+
35+
### Label `String`
36+
37+
Specifies the label for the speed-dial item.
38+
39+
### OnClientClicked `String`
40+
41+
Specifies the click event handler of the speed-dial item.
42+
43+
### Title `String`
44+
45+
Specifies the label for the speed-dial item that will be read by assistive technologies.
46+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
---
2+
title: Telerik.Web.UI.FloatingActionButtonItemConverter
3+
page_title: Telerik.Web.UI.FloatingActionButtonItemConverter
4+
description: Telerik.Web.UI.FloatingActionButtonItemConverter
5+
---
6+
7+
# Telerik.Web.UI.FloatingActionButtonItemConverter
8+
9+
Serialization JS converter class for FloatingActionButtonItem
10+
11+
## Inheritance Hierarchy
12+
13+
* System.Object
14+
* System.Web.Script.Serialization.JavaScriptConverter
15+
* Telerik.Web.UI.ExplicitJavaScriptConverter
16+
* Telerik.Web.UI.FloatingActionButtonItemConverter
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+

0 commit comments

Comments
 (0)