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-mvc/helpers/grid/binding/ajax-binding.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -76,9 +76,9 @@ Below are listed the steps for you to follow when configuring the Kendo UI Grid
76
76
}
77
77
78
78
> **Important**
79
-
> * The `ToDataSourceResult()` method will page, sort, filter, and group the collection that is passed to it. If this collection is already paged, the method returns an empty result.
80
-
> * As of the Kendo UI R1 2017 SP1 release, you can use the `ToDataSourceResultAsync` extension method to provide the asynchronous functionality of `ToDataSourceResult` by leveraging the `async` and `await` features of the .NET Framework.
81
-
> * If you have impersonation enabled, `ToDataSourceResultAsync` extension method works well when only one thread is used in your ASP.NET application. As soon as you create a new one, impersonation drops off in the newly created child thread becauseall newly created child threads in ASP.NET by default run under the ASP.NET worker process's identity. To change this behaviour you have to explicitly impersonate current identity within the child thread's code.
79
+
> * The `ToDataSourceResult()` method will page, sort, filter, and group the collection that is passed to it. If this collection is already paged, the method returns an empty result.
80
+
> * As of the Kendo UI R1 2017 SP1 release, you can use the `ToDataSourceResultAsync` extension method to provide the asynchronous functionality of `ToDataSourceResult` by leveraging the `async` and `await` features of the .NET Framework.
81
+
> * If you impersonation is enabled, use the `ToDataSourceResultAsync` extension method with only one thread in your ASP.NET application. If you create a new thread, the impersonation in the newly created child thread decreases because, by default, all newly created child threads in ASP.NET run under the ASP.NET identity of the worker process. To change this behavior, explicitly impersonate the current identity within the code of the child thread.
82
82
83
83
The following example demonstrates how to implement the `ToDataSourceResultAsync` extension method in your project.
Copy file name to clipboardExpand all lines: docs/controls/charts/overview.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -158,14 +158,14 @@ The category name can also be bound to a field of the data item, as demonstrated
158
158
}
159
159
});
160
160
161
-
#### Label Position of the Categorical Chart Axes
161
+
#### Label Positioning for the Categorical Chart Axes
162
162
163
163
The category and value axes provide options for displaying their labels either next to the axis or at the outer edges of the plot area. By default, the labels are positioned next to the axis.
164
164
165
-
To change the label position, set the [`position`](/api/javascript/dataviz/ui/chart#configuration-categoryAxis.labels.position) option of the axis labels:
165
+
To change the label position, set the [`position`](/api/javascript/dataviz/ui/chart#configuration-categoryAxis.labels.position) option of the axis labels which provides the following available options:
166
+
* (Default) When `position` is set to `"onAxis"` or `undefined`, the labels are positioned next to the axis.
166
167
* When `position` is set to `"end"`, the labels are placed at the end of the crossing axis. Typically, this configuration positions the labels at the top or right end of the Chart unless the crossing axis was reversed.
167
168
* When `position` is set to `"start"`, the labels are placed at the start of the crossing axis. Typically, this configuration positions the labels at the left or bottom end of the Chart unless the crossing axis was reversed.
168
-
* When `position` is set to `"onAxis"` or `undefined`, the labels are positioned next to the axis. This is the default value.
169
169
170
170
###### Example
171
171
@@ -292,14 +292,14 @@ XY Kendo UI Charts, such as [Scatter](http://demos.telerik.com/kendo-ui/scatter-
292
292
}
293
293
});
294
294
295
-
### Label Position of the Scatter Chart Axes
295
+
### Label Positioning for the Scatter Chart Axes
296
296
297
297
The X and Y axes provide options for displaying their labels either next to the axis or at the outer edges of the plot area. By default, the labels are positioned next to the axis.
298
298
299
-
To change the label position, set the [`position`](/api/javascript/dataviz/ui/chart#configuration-xAxis.labels.position) option of the axis labels:
299
+
To change the label position, set the [`position`](/api/javascript/dataviz/ui/chart#configuration-xAxis.labels.position) option of the axis labels which provides the following available options:
300
+
* (Default) When `position` is set to `"onAxis"` or `undefined`, the labels are positioned next to the axis.
300
301
* When `position` is set to `"end"`, the labels are placed at the end of the crossing axis. Typically, this configuration positions the labels at the top or right end of the Chart unless the crossing axis was reversed.
301
302
* When `position` is set to `"start"`, the labels are placed at the start of the crossing axis. Typically, this configuration positions the labels at the left or bottom end of the Chart unless the crossing axis was reversed.
302
-
* When `position` is set to `"onAxis"` or `undefined`, the labels are positioned next to the axis. This is the default value.
Copy file name to clipboardExpand all lines: docs/controls/conversational-ui/chat/toolbar.md
+9-11Lines changed: 9 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,13 +8,13 @@ position: 3
8
8
9
9
# Chat Toolbar
10
10
11
-
The Chat Toolbar allows adding different toolbar actions for achieving more userfriendly conversational UI.
11
+
The toolbar of the Chat allows you to add toolbar actions for achieving more user-friendly conversational UI.
12
12
13
-
The Toolbar is placed below the Chat input box and it can be shown/hidden by clicking the toolbar icon placed just to the left from the send button. The Chat Toolbar allows you to include buttons, which the end users can interact with. By handling the [`toolClick`](/api/javascript/ui/chat/events/toolclick) event you can implement functionality based on the command executed in the toolbar.
13
+
The toolbar is located below the input box of the Chat. You can display or hide the toolbar by clicking the toolbar icon which is placed to the left of the **Send** button. The Chat toolbar enables you to add buttons for end-user interaction. Depending on the executed command in the toolbar, you can also implement a specific functionality by handling the [`toolClick`](/api/javascript/ui/chat/events/toolclick) event.
14
14
15
-
## Configure Toolbar Items
15
+
## Configuring Toolbar Items
16
16
17
-
In order to configure the Toolbar items, you will need to use the [`toolbar.buttons`](/api/javascript/ui/chat/configuration/toolbar.buttons)configuration option of the Chat widget:
17
+
To configure the Toolbar items, use the [`toolbar.buttons`](/api/javascript/ui/chat/configuration/toolbar.buttons) option of the Chat.
18
18
19
19
```html
20
20
<divid="chat"></div>
@@ -33,15 +33,13 @@ In order to configure the Toolbar items, you will need to use the [`toolbar.butt
33
33
</script>
34
34
```
35
35
36
-
## Configure Toolbar Behavior
36
+
## Configuring Toolbar Behavior
37
37
38
-
The Chat configuration object allows you to configure:
38
+
The Chat configuration object allows you to configure the following behavior aspects of the toolbar:
39
39
40
-
* The [animation](/api/javascript/ui/chat/configuration/toolbar.animation) behavior of its Toolbar.
41
-
42
-
* Wether the Toolbar will have a [scroll](/api/javascript/ui/chat/configuration/toolbar.scrollable). That is useful in cases when the buttons could not entirely fit within the width of the widget.
43
-
44
-
* Wether it could be [hidden and shown](/api/javascript/ui/chat/configuration/toolbar.toggleable) upon a button click.
40
+
* The [animation](/api/javascript/ui/chat/configuration/toolbar.animation) behavior of its toolbar.
41
+
* Whether the toolbar will be [scrollable](/api/javascript/ui/chat/configuration/toolbar.scrollable). A scrollbar is useful when the buttons cannot entirely fit within the width of the Chat.
42
+
* Whether the toolbar will be [displayed or hidden](/api/javascript/ui/chat/configuration/toolbar.toggleable) upon a button click.
Copy file name to clipboardExpand all lines: docs/knowledge-base/grid-display-hidden-values-in-details.md
+4-5Lines changed: 4 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,15 +1,16 @@
1
1
---
2
-
title: Display Hidden Columns Values in Detail Template
2
+
title: Display Hidden Column Values in Detail Template
3
3
description: An example on how to show the values of the hidden column in the detail template of the Kendo UI Grid.
4
4
type: how-to
5
-
page_title: Responsive Value Display | Kendo UI Grid
5
+
page_title: Implement Responsive Value Display | Kendo UI Grid
6
6
slug: grid-display-hidden-values-in-details
7
7
tags: grid, responsive, details
8
8
ticketid: 1180379
9
9
res_type: kb
10
10
---
11
11
12
12
## Environment
13
+
13
14
<table>
14
15
<tr>
15
16
<td>Product Version</td>
@@ -27,8 +28,6 @@ How can I display the hidden columns values in the detail template of the rows i
27
28
28
29
## Solution
29
30
30
-
To display the hidden columns values:
31
-
32
31
1. Implement a [`detailTemplate`](https://docs.telerik.com/kendo-ui/api/javascript/ui/grid/configuration/detailtemplate).
33
32
1. Use [media queries](https://developer.mozilla.org/en-US/docs/Web/CSS/Media_Queries/Using_media_queries) to show and hide the desired data in the detail template.
34
33
@@ -103,4 +102,4 @@ To display the hidden columns values:
0 commit comments