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/api/javascript/ui/numerictextbox.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ Represents the Kendo UI NumericTextBox widget. Inherits from [Widget](/api/javas
37
37
38
38
### decimals `Number`*(default: null)*
39
39
40
-
Specifies the number precision applied to the widget value and when the NumericTextBox is focused. If not set, the precision defined by the current culture is used. If the user enters a number with a greater precision than is currently configured, the widget value will be rounded. For example, if `decimals` is `2` and the user inputs `12.346`, the value will become `12.35`. If the user inputs `12.99`, the value will become `13.00`.
40
+
Specifies the number precision applied to the widget value and when the NumericTextBox is focused. If not set, the precision defined by the current culture is used. If the user enters a number with a greater precision than is currently configured, the widget value will be rounded. For example, if `decimals` is `2` and the user inputs `12.346`, the value will become `12.35`. If `decimals` is `1`the user inputs `12.99`, the value will become `13.00`.
41
41
42
42
Compare with the [`format`](/api/javascript/ui/numerictextbox#configuration-format) property.
Copy file name to clipboardExpand all lines: docs/controls/navigation/dropdownbutton/accessibility/overview.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ The DropDownButton is compliant with the Section 508 requirements. For more info
25
25
26
26
## WCAG 2.1
27
27
28
-
The DropDownButton supports the standards for providing accessible web content which are set by the [Web Content Accessibility Guidelines 2.1](https://www.w3.org/TR/WCAG/). For more information, refer to the article on [WCAG 2.1 compliance in Kendo UI for jQuery]({% slug section508_wcag21_accessibility_support %})
28
+
The DropDownButton supports the standards for providing accessible web content which are set by the [Web Content Accessibility Guidelines 2.1](https://www.w3.org/TR/WCAG/). For more information, refer to the article on [WCAG 2.1 compliance in Kendo UI for jQuery]({% slug section508_wcag21_accessibility_support %}).
@@ -64,7 +64,7 @@ The default `fillMode` value is `solid` and it is applied to the button element
64
64
65
65
### ThemeColor
66
66
67
-
As applying `themeColor` is closely related to the `fillMode`, the structure of the class name for the`themeColor` is a composite `k-button-{fillMode}-{themeColor}` setting.
67
+
As applying `themeColor` is closely related to the `fillMode` option, the structure of the class name for `themeColor` is a composite `k-button-{fillMode}-{themeColor}` setting.
68
68
69
69
The following values are available for the [`themeColor`](/api/javascript/ui/dropdownbutton/configuration/themecolor) option:
70
70
@@ -81,7 +81,7 @@ The following values are available for the [`themeColor`](/api/javascript/ui/dro
81
81
-`inverse`
82
82
-`none`
83
83
84
-
The default `themeColor` value is `base`. A button with default `fillMode` and `themeColor` will have the `k-button-solid-base` class applied.
84
+
The default `themeColor` value is `base`. A button with default `fillMode` and `themeColor`options will have the `k-button-solid-base` class applied.
85
85
86
86
```html
87
87
<!-- DropDownButton with default fillMode and themeColor -->
@@ -113,7 +113,7 @@ The following values are available for the [`rounded`](/api/javascript/ui/dropdo
113
113
-`pill`
114
114
-`none`—Unset.
115
115
116
-
The default rounded value is `medium` and it is applied to the button element through the `k-rounded-md` class.
116
+
The default `rounded` value is `medium` and it is applied to the button element through the `k-rounded-md` class.
Copy file name to clipboardExpand all lines: docs/controls/navigation/dropdownbutton/icons.md
+7-4Lines changed: 7 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ The DropDownButton provides options for visually enhancing its textual content b
12
12
13
13
You can add an icon with the `img` element or with a background image (usually a sprite). With regard to web standards, using background images is better because the icon represents a decoration, not structural content.
14
14
15
-
The DropDownButton provides the `icon`, `spriteCssClass` and `imageUrl` properties for configuring icons. With a specific SplitButton instance, you have to use only one of them—if you define multiple properties, the SplitButton will work with only one of them in the order previously stated.
15
+
The DropDownButton provides the `icon`, `spriteCssClass`, and `imageUrl` properties for configuring icons. With a specific DropDownButton instance, you have to use only one of them—if you define multiple properties, the DropDownButton will work with only one of them in the order previously stated.
16
16
17
17
For a complete example on rendering an Icon DropDownButton, refer to the [Icons demo of the DropDownButton](https://demos.telerik.com/kendo-ui/dropdownbutton/icons).
18
18
@@ -23,7 +23,10 @@ To visually enhance the DropDownButton, use any of the following approaches:
23
23
24
24
## Background Icons
25
25
26
-
Background icons are applied over the `icon` or `spriteCssClass` properties and are displayed as a background of a `span` element. The DropDownButton can automatically render the `span` element, or use an existing `span` element if it has a `k-sprite` CSS class or a `k-icon` class if the `icon` property is used. The difference between the `icon` or `spriteCssClass` properties is that `icon` is intended to be used for built-in Kendo UI icons which are part of the theme sprite. For a list of the available icon names, refer to the [demo on using icons](https://demos.telerik.com/kendo-ui/web/styling/icons.html).
26
+
Background icons are applied through the `icon` or `spriteCssClass` properties and are displayed as a background of a `span` element. The DropDownButton can either:
27
+
* Automatically render the `span` element.
28
+
* Use an existing `span` element—Possible only if the element has a `k-sprite` CSS class or a `k-icon` CSS class (if you use the `icon` property).
29
+
The difference between the `icon` and `spriteCssClass` properties is that `icon` is intended for use with the built-in Kendo UI icons which are part of the theme sprite. For a list of the available icon names, refer to the [demo on using icons](https://demos.telerik.com/kendo-ui/web/styling/icons.html).
27
30
28
31
The following example demonstrates how to use icons in the DropDownButton widget:
29
32
@@ -51,11 +54,11 @@ The `icon` configuration in the previous example will produce the following HTML
51
54
The following example demonstrates how to apply the `spriteCssClass`:
Copy file name to clipboardExpand all lines: docs/controls/navigation/dropdownbutton/overview.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ position: 1
8
8
9
9
# DropDownButton Overview
10
10
11
-
The Kendo UI for jQuery DropDownButton widget combines a button with a dropdown element. It allows users to click on the primary button and open the drop-down popup to choose from a list of additional actions.
11
+
The Kendo UI for jQuery DropDownButton widget combines a button with a drop-down element. It allows users to click the primary button and open the drop-down popup to choose from a list of additional actions.
12
12
13
13
*[Demo page for the DropDownButton](https://demos.telerik.com/kendo-ui/dropdownbutton/index)
0 commit comments