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: ai/overview.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
@@ -41,25 +41,28 @@ To use the Telerik MAUI AI Coding Assistant, you need:
41
41
Consider the following recommendations when working with the AI Coding Assistant:
42
42
43
43
* Add NuGet packages/referenced assemblies for the Telerik UI for WPF product.
44
-
* Set the .sln as a context.
44
+
* Set the `.sln` as a context.
45
45
* When switching between tasks and files, start a new session in a new chat window to avoid polluting the context with irrelevant or outdated information.
46
46
* At the time of publishing, Claude Sonnet 4 produces optimal results.
47
47
48
48
## Usage Limits
49
49
50
50
Access to the AI Coding Assistant depends on your [Telerik license type](https://www.telerik.com/purchase/faq/licensing-purchasing):
51
51
52
-
Subscription License:
52
+
### Subscription License
53
+
53
54
* A Subscription is the primary license that grants full access to the AI Coding Assistant.
54
55
* Includes a virtually unlimited number of requests, with a fair use threshold of 300 requests per day.
55
56
* Best for ongoing and high-volume usage.
56
57
57
-
Perpetual License (Limited Access):
58
+
### Perpetual License (Limited Access)
59
+
58
60
* Perpetual licenses include limited access of 50 requests per year.
59
61
* Intended for exploring and trying out the AI Coding Assistant.
60
62
* For continued or higher-volume access, upgrade to a Subscription license.
61
63
62
-
Trial License:
64
+
### Trial License
65
+
63
66
* Trial licenses include 300 requests per trial per year.
64
67
* Reactivating the same trial for a new release does not grant additional requests.
65
68
* Designed for evaluating the feature before purchasing.
Copy file name to clipboardExpand all lines: controls/tabview/styling/header-itemstyle-selector.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
@@ -11,7 +11,7 @@ position: 3
11
11
12
12
The TabView control provides the built-in `HeaderItemStyleSelector` property, which allows you to apply different styles to each TabView header item. The target type of the style must be `TabViewHeaderItem`.
13
13
14
-
The following example shows how to apply styles to the TabView heare using a style selector.
14
+
The following example shows how to apply styles to the TabView by using a style selector.
Copy file name to clipboardExpand all lines: controls/treedatagrid/methods.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
@@ -14,7 +14,7 @@ The [Telerik UI for .NET MAUI TreeDataGrid]({%slug datagrid-overview%}) exposes
14
14
*`Expand`(`object item`)—Expands the children of the item.
15
15
*`Collapse`(`object item`)—Collapses the children of the item.
16
16
17
-
Use the `IsExpanded` (`bool`) property to get a value whether the item is currently expanded (has its children visible).
17
+
Use the `IsExpanded` (`object item`) method to get a value whether the item is currently expanded (has its children visible). Returns `true` if the item is expanded, otherwise `false`.
Copy file name to clipboardExpand all lines: knowledge-base/datagrid-sorting-grouping-descending-order.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,20 +17,20 @@ res_type: kb
17
17
18
18
## Description
19
19
20
-
I need when the user groups the DataGrid through the U, the groups to appear in descending order. Currently, the items are sorted by `FirstContactDate` in descending order, but when grouped, the grouping defaults to ascending order. The goal is to allow users to see the latest entries grouped by `FirstContactDate` in descending order.
20
+
When the user groups the DataGrid through the UI, I need the groups to appear in descending order. Currently, the items are sorted by `FirstContactDate` in descending order, but when grouped, the grouping defaults to ascending order. The goal is to allow users to see the latest entries grouped by `FirstContactDate` in descending order.
21
21
22
22
This knowledge base article also answers the following questions:
23
23
- How to sort and group items in descending order in DataGrid?
24
24
- How to set group descriptors to descending order in Telerik DataGrid for .NET MAUI?
25
-
- How to change group descriptor order dynamically during grouping?
25
+
- How to change the group descriptor order dynamically during grouping?
26
26
27
27
## Solution
28
28
29
-
To achieve sorting and grouping in descending order, follow one of the approaches below:
29
+
To achieve sorting and grouping in descending order, follow one of the approaches below.
30
30
31
31
### Option 1: Set Sort and Group Descriptors Explicitly
32
32
33
-
Define both `SortDescriptors` and `GroupDescriptors` with the desired `SortOrder` in the XAML configuration:
33
+
Define both `SortDescriptors` and `GroupDescriptors` with the desired `SortOrder` in the XAML configuration.
34
34
35
35
```xaml
36
36
<telerik:RadDataGrid.GroupDescriptors>
@@ -44,7 +44,7 @@ Define both `SortDescriptors` and `GroupDescriptors` with the desired `SortOrder
44
44
45
45
### Option 2: Change Group Sort Order at Runtime
46
46
47
-
Use the `GroupDescriptors.CollectionChanged` event to dynamically update the `SortOrder` of the group descriptor when a column is grouped. Example:
47
+
Use the `GroupDescriptors.CollectionChanged` event to dynamically update the `SortOrder` of the group descriptor when a column is grouped. For example:
Copy file name to clipboardExpand all lines: knowledge-base/dynamically-update-tabview-headertext-based-on-selection.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,13 +22,13 @@ I need to change the `HeaderText` of the TabView items when they are selected. F
22
22
This knowledge base article also answers the following questions:
23
23
- How can I change the header text of TabView dynamically?
24
24
- How to update TabView `HeaderText` based on selection in .NET MAUI?
25
-
- How to use ``SelectionChanged` event in TabView to modify `HeaderText`?
25
+
- How to use the `SelectionChanged` event in TabView to modify `HeaderText`?
26
26
27
27
## Solution
28
28
29
-
Use the [SelectionChanged](https://docs.telerik.com/devtools/maui/controls/tabview/selection#events) event of the TabView to dynamically update the header text based on the selected tab item.
29
+
Use the [`SelectionChanged`](https://docs.telerik.com/devtools/maui/controls/tabview/selection#events) event of the TabView to dynamically update the header text based on the selected tab item.
30
30
31
-
1. Subscribe to the `SelectionChanged` event in the TabView.
31
+
**1.** Subscribe to the `SelectionChanged` event in the TabView.
32
32
33
33
```xaml
34
34
<telerik:RadTabViewx:Name="tabView"
@@ -40,7 +40,7 @@ Use the [SelectionChanged](https://docs.telerik.com/devtools/maui/controls/tabvi
40
40
</telerik:RadTabView>
41
41
```
42
42
43
-
2. Implement a method to update the `HeaderText` dynamically based on the selected index. Handle the `SelectionChanged` event in the code-behind:
43
+
**2.** Implement a method to update the `HeaderText` dynamically based on the selected index. Handle the `SelectionChanged` event in the code-behind.
0 commit comments