Skip to content

Commit 6559fe8

Browse files
committed
Minor updates
1 parent 1a35e99 commit 6559fe8

File tree

2 files changed

+48
-27
lines changed

2 files changed

+48
-27
lines changed

ai-coding-assistant/overview.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ You can use the AI Coding Assistant for:
4646

4747
* **Initial code generation**: Quickly add components to your app to speed up the initial development.
4848
* **Basic component configuration**: Enable or disable specific component features, or fine tune the configuration through prompting. More complex configurations are possible but may require additional manual work to be production-ready.
49-
* ** Dummy data generation and data binding**: Quickly add data to your app for testing and prototyping purposes. Avoid exposing or providing access to your proprietary or production data to AI-enabled tools.
49+
* **Dummy data generation and data binding**: Quickly add data to your app for testing and prototyping purposes. Avoid exposing or providing access to your proprietary or production data to AI-enabled tools.
5050
* **Step-by-step explanations**: Understand the solutions provided by the AI Coding Assistant through the detailed explanations (depends on the tool, mode, and model used). To further develop your knowledge, check the respective documentation.
5151
* **Preliminary troubleshooting**: Resolve obvious and easy-to-solve issues affecting your code. For more complex issues, look for assistance by contacting our support team.
5252

53-
## Supported Assemblies
53+
## Coverage
5454

55-
The Telerik UI for WinForms AI Coding Assistant currently covers the following assemblies:
55+
The Telerik AI Coding Assistant is trained on the Telerik UI for WinForms API reference, official documentation, and purpose-built code examples for the controls in the assemblies listed below:
5656

5757
* Telerik.WinControls.UI
5858
* Telerik.WinControls.GridView
@@ -123,6 +123,11 @@ Data Storage:
123123

124124
> Make sure also to review the terms and privacy policies of your selected AI model and AI client.
125125
126+
## Telerik Document Processing AI Coding Assistant
127+
128+
You can also use the AI Coding Assistant for **Telerik Document Processing** to generate high-quality code samples and speed up your development.
129+
Read the full guide in the dedicated [DPL AI Coding Assistant article](https://docs.telerik.com/devtools/document-processing/ai-coding-assistant/overview).
130+
126131
## Next Steps
127132

128133
* Install the [Telerik WinForms GitHub Copilot Extension]({%slug ai-copilot-extension%})

ai-coding-assistant/prompt-library.md

Lines changed: 40 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -40,23 +40,41 @@ The __Telerik.Telerik.WinControls.UI__ assembly exposes many components. One of
4040

4141
<table>
4242
<tr>
43-
<th>DataBound the RadDropDownList to a custom collection</th>
44-
<th>DataBound the RadDropDownList and allow multiple selection</th>
43+
<th>Databind the RadDropDownList to a custom collection</th>
44+
<th>Databind the RadCheckedDropDownList and allow multiple selection</th>
4545
</tr>
4646
<tr>
4747
<td>
4848
<pre><code>
49-
\#telerik_winforms_assistant Add RadDropDownList data bound to a collection of business objects. Each object should have a Name, Address, City and Country property. Use the Name to display the items in the UI.
49+
#telerik_winforms_assistant Add combobox data bound to a collection of business objects. Each object should have a Name, Address, City and Country property. Use the Name to display the items in the UI
5050
</code></pre>
5151
</td>
5252
<td>
5353
<pre><code>
54-
\#telerik_winforms_assistant Add RadDropDownList (WinForms) data bound to a collection of business objects. Each object should have a Name, Address, City and Country property. Use the Name to display the items in the UI. Show all of the properties in the drop down and allow multipe selection.
54+
#telerik_winforms_assistant Create a RadDropDownList bound to some sample data. The control should allow multiple selection
55+
5556
</code></pre>
5657
</td>
5758
</tr>
58-
</table>
59-
59+
</table>
60+
<table>
61+
<tr>
62+
<th>Dynamically add pages in RadPageView</th>
63+
<th>Preselect a page in RadPageView</th>
64+
</tr>
65+
<tr>
66+
<td>
67+
<pre><code>
68+
#telerik_winforms_assistant Add pages dynamically to the pageview and change the page text when selecting the page
69+
</code></pre>
70+
</td>
71+
<td>
72+
<pre><code>
73+
#telerik_winforms_assistant Create PageView with 3 tabs and preselect the second tab
74+
</code></pre>
75+
</td>
76+
</tr>
77+
</table>
6078

6179
### GridView Assembly
6280

@@ -70,55 +88,53 @@ The __Telerik.Windows.Controls.GridView__ assembly provides the [Telerik UI for
7088
<tr>
7189
<td>
7290
<pre><code>
73-
\#telerik_winforms_assistant Create a RadGridView with 100 records each having Id, Name and Company. Group the data by Company. Sort by name. Add aggregate count function for the company column.
91+
#telerik_winforms_assistant Create a RadGridView with 100 records each having Id, Name and Company. Group the data by Company. Sort by name. Add aggregate count function for the company column.
7492
</code></pre>
7593
</td>
7694
<td>
7795
<pre><code>
78-
\#telerik_winforms_assistant Data bind the RadGridView control to a collection of items. Add columns for stocks data manually where one of the columns should use a combobox.
96+
#telerik_winforms_assistant Data bind the RadGridView control to a collection of items. Add columns for stocks data manually where one of the columns should use a combobox.
7997
</code></pre>
8098
</td>
8199
</tr>
82-
</table>
83-
100+
</table>
84101
<table>
85102
<tr>
86-
<th>DataBound the RadGridView and customize it.</th>
87-
<th>DataBound the RadGridView and cancel the editing.</th>
103+
<th>DataBound the RadGridView and customize it</th>
104+
<th>Merge Cells in RadGridView</th>
88105
</tr>
89106
<tr>
90107
<td>
91108
<pre><code>
92-
\#telerik_winforms_assistant Create a RadGridView with 3 columns - Name, Country, City. Add the corresponding business object in the code behind and populate is with sample data. Add 20 entries to the data. Change the selection text color and mouse over color of the datagrid cells and rows. Apply different color for rows based on a condition (alternating rows).
109+
#telerik_winforms_assistant Create a RadGridView and bind it to a sample data. Change the selection text color and mouse over color of the datagrid cells and rows. Apply different color for rows based on a condition (alternating rows)
93110
</code></pre>
94111
</td>
95112
<td>
96113
<pre><code>
97-
\#telerik_winforms_assistant Create a RadGridView with 3 columns - Name, Country, City. Add the corresponding business object in the code behind and populate is with sample data. Add 20 entries to the data. And show me how to cancel the editing of the datagrid cell.
114+
#telerik_winforms_assistant Bind the RadGridView to sample data. Demonstrate how to merge cells in control
98115
</code></pre>
99116
</td>
100117
</tr>
101-
</table>
102-
118+
</table>
103119

104120
#### RadDock Assembly
105121

106122
The __Telerik.WinControls.RadDock__ assembly provides the Telerik UI for WinForms RadDocking, which you can use to introduce a docking system like the Microsoft Visual Studio.
107123

108124
<table>
109125
<tr>
110-
<th>Create basic RadDock with 2 panels.</th>
111-
<th>Save and load the layout.</th>
126+
<th>Create basic RadDock with 2 panels</th>
127+
<th>Save and load the layout</th>
112128
</tr>
113129
<tr>
114130
<td>
115131
<pre><code>
116-
\#telerik_winforms_assistant Create a basic RadDocking layout with two panes docked on the left, one on the right and two on the bottom of the control.
132+
#telerik_winforms_assistant Create a basic RadDocking layout with two panes docked on the left, one on the right and two on the bottom of the control
117133
</code></pre>
118134
</td>
119135
<td>
120136
<pre><code>
121-
\#telerik_winforms_assistant How to save and load the current docking layout.
137+
#telerik_winforms_assistant How to save and load the current docking layout
122138
</code></pre>
123139
</td>
124140
</tr>
@@ -131,18 +147,18 @@ The __Telerik.WinControls.RichTextEditor__ assembly enables you to use the Teler
131147

132148
<table>
133149
<tr>
134-
<th>Import or export different formats.</th>
135-
<th>How to insert element like images or text in the document. </th>
150+
<th>RadRichTextEditor and RichTextEditorRiboonBar integration</th>
151+
<th>Allow export in various formats</th>
136152
</tr>
137153
<tr>
138154
<td>
139155
<pre><code>
140-
\#telerik_winforms_assistant How to import and export different formats in the rich text editor. Add toolbar items for import and export options.
156+
#telerik_winforms_assistant Create a RadRichTextEditor and load a document. Associate the RichTextEditorRiboonBar to control editing and styling
141157
</code></pre>
142158
</td>
143159
<td>
144160
<pre><code>
145-
\#telerik_winforms_assistant How to Insert element like images, text in the document.
161+
#telerik_winforms_assistant I have a document already loaded inside RadRichTextEditor. I want to allow exporting in various formats
146162
</code></pre>
147163
</td>
148164
</tr>

0 commit comments

Comments
 (0)