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/backwards-compatibility/2021-backwards-compatibility.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,21 @@ position: 1
10
10
11
11
This article lists the breaking or important changes in the 2021 releases of Kendo UI.
12
12
13
+
## {{ site.product }} R3 2021 SP1
14
+
15
+
**ColorPicker**
16
+
17
+
As of the 2021 R3 SP1 release, the ColorPicker has a new design and some new features were introduced. To revert to the legacy design use the following configuration:
@@ -262,10 +267,11 @@ To bind to remote data by using the DataSource component:
262
267
.Format("{0:N0}")
263
268
)
264
269
)
270
+
```
265
271
266
272
1. (Optional) Configure a Custom DataSource.
267
273
268
-
Unlike the Grid, the Chart is configured to read a flat data response by default. If you have custom logic that requires the usage of the `ToDataSourceResult()` extension method when returning data for the Chart, configure a custom DataSource with a schema that can correctly parse the response.
274
+
Unlike the Grid, the Chart is configured to read a flat data response by default. If you have custom logic that requires the usage of the `ToDataSourceResult()` extension method when returning data for the Chart, configure a custom DataSource with a schema that can correctly parse the response. For further details on the DataSource configuration refer to the [DataSource section of the documentation]({% slug htmlhelpers_datasource_aspnetcore %}).
269
275
270
276
```tab-Controller
271
277
public IActionResult Products_Read([DataSourceRequest] DataSourceRequest request)
Copy file name to clipboardExpand all lines: docs-aspnet/html-helpers/editors/combobox/filtering.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
@@ -10,7 +10,7 @@ position: 5
10
10
11
11
The Telerik UI ComboBox HtmlHelper for {{ site.framework }} allows the user to filter the available items by their text so they can find the one they need more quickly.
12
12
13
-
To enable the filtering, set the `Filter` to the desired filter operator such as `contains`. When the filtering is enabled, the user can decide where the actual filtering happens:
13
+
To enable the filtering, set the [`Filter`](https://docs.telerik.com/aspnet-core/api/Kendo.Mvc.UI/FilterType) to the desired filter operator.Supported options include `Contains`, `StartsWith` and `EndsWith`. When the filtering is enabled, the user can decide where the actual filtering happens:
Copy file name to clipboardExpand all lines: docs-aspnet/html-helpers/editors/editor/image-browser.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
@@ -47,7 +47,7 @@ The following list provides information about the default requests and responses
47
47
48
48
`name` from the previous example is the name of the file or directory, `type` is either an `f` for a file or a `d` for a directory, and `size` is the file size (optional).
49
49
50
-
- `Destroy()`—Makes a `POST` request with the following parameters:
50
+
- `Destroy()`—Makes a `POST` request with the following parameters and expects an empty ContentResult as a response:
51
51
52
52
- `name`—The file or the directory that will be deleted.
53
53
- `path`—The directory in which the file or the directory resides.
0 commit comments