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
#kendo-jquery-assistant Create a simple HTML page that utilizes Kendo UI for jQuery and add a Grid with sample local data.
50
52
```
@@ -57,14 +59,17 @@ This section provides examples of general questions related to Kendo UI for jQue
57
59
```js
58
60
```
59
61
62
+
</div>
63
+
60
64
## Component-Specific Prompts
61
65
62
66
Below are grouped prompt ideas for popular and feature‑rich Kendo UI for jQuery components.
63
67
64
-
---
65
68
### Grid
66
69
The [Kendo UI for jQuery Grid]({% slug overview_kendoui_grid_widget %}) renders tabular data with rich interactivity (sorting, filtering, grouping, editing, export, virtualization, and more).
#kendo-jquery-assistant Create a Kendo UI for jQuery Grid that displays employees with fields: id, name, position, salary. Enable sorting and paging. Use inline dummy data (array of objects). Page size 10.
70
75
```
@@ -101,9 +106,13 @@ The [Kendo UI for jQuery Grid]({% slug overview_kendoui_grid_widget %}) renders
101
106
```js
102
107
```
103
108
109
+
</div>
110
+
104
111
### TreeList
105
112
The [Kendo UI for jQuery TreeList]({% slug overview_kendoui_treelist_widget %}) enables you to display self-referencing tabular data and allows you to sort, filter, and edit data.
#kendo-jquery-assistant Create a Kendo UI for jQuery TreeList showing hierarchical employees (Id, Name, Title, ReportsTo). Enable sorting and expand all nodes on load.
109
118
```
@@ -116,9 +125,13 @@ The [Kendo UI for jQuery TreeList]({% slug overview_kendoui_treelist_widget %})
116
125
```js
117
126
```
118
127
128
+
</div>
129
+
119
130
### Chart
120
131
The [Kendo UI for jQuery Charts]({% slug overview_kendoui_charts_widget %}) provide a comprehensive charting solution for data visualization with multiple chart types and customization options.
#kendo_jquery_assistant Create three different charts to give different visual demonstration of the 8 most air polluted cities in the world.
124
137
```
@@ -143,9 +156,13 @@ The [Kendo UI for jQuery Charts]({% slug overview_kendoui_charts_widget %}) prov
143
156
```js
144
157
```
145
158
159
+
</div>
160
+
146
161
### Scheduler
147
162
The [Kendo UI for jQuery Scheduler]({% slug overview_kendoui_scheduler_widget %}) enables you to create calendar and scheduling applications with multiple view types and rich editing capabilities.
#kendo_jquery_assistant Create a page that contains a basic Scheduler component with 3 views - day, month and week.
151
168
```
@@ -164,10 +181,14 @@ The [Kendo UI for jQuery Scheduler]({% slug overview_kendoui_scheduler_widget %}
164
181
```js
165
182
```
166
183
184
+
</div>
185
+
167
186
### Editor
168
187
169
188
The [Kendo UI for jQuery Editor]({% slug overview_kendoui_editor_widget %}) provides a rich text editing experience with support for various content types, including text, images, and tables. It includes features like formatting, styling, and content manipulation.
#kendo_jquery_assistant Add an Editor to the page. Add only 5 tools in the Editor.
173
194
```
@@ -180,10 +201,12 @@ The [Kendo UI for jQuery Editor]({% slug overview_kendoui_editor_widget %}) prov
180
201
```js
181
202
```
182
203
204
+
</div>
183
205
184
206
### ComboBox
185
207
The [Kendo UI for jQuery ComboBox]({% slug overview_kendoui_combobox_widget %}) allows you to display a single selection from a list of choices, and provides virtualization and customization through templates.
#kendo-jquery-assistant Create a ComboBox bound to an inline array of products with fields id and name. Placeholder "Select product". Filter contains.
@@ -197,9 +220,13 @@ The [Kendo UI for jQuery ComboBox]({% slug overview_kendoui_combobox_widget %})
197
220
```js
198
221
```
199
222
223
+
</div>
224
+
200
225
### DropDownList
201
226
The [Kendo UI for jQuery DropDownList]({% slug overview_kendoui_dropdownlist_widget %}) allows you to display a single selection from a list of choices, and provides virtualization and customization through templates.
#kendo-jquery-assistant Create a DropDownList with category data and include a default "Select category..." option.
205
232
```
@@ -212,9 +239,12 @@ The [Kendo UI for jQuery DropDownList]({% slug overview_kendoui_dropdownlist_wid
212
239
```js
213
240
```
214
241
242
+
</div>
243
+
215
244
### MultiSelect
216
245
The [Kendo UI for jQuery MultiSelect]({% slug overview_kendoui_multiselect_widget %}) allows you to display a multiple selection from a list of choices. It provides virtualization and customization through templates.
#kendo-jquery-assistant Create a MultiSelect with an array of product objects.
@@ -228,9 +258,12 @@ The [Kendo UI for jQuery MultiSelect]({% slug overview_kendoui_multiselect_widge
228
258
```js
229
259
```
230
260
261
+
</div>
262
+
231
263
### DatePicker
232
264
The [Kendo UI for jQuery DatePicker]({% slug overview_kendoui_datepicker_widget %}) enables you to select a date from a calendar or through a direct input.
#kendo-jquery-assistant Render a DatePicker with a default selected date.
@@ -258,9 +291,12 @@ The [Kendo UI for jQuery DatePicker]({% slug overview_kendoui_datepicker_widget
258
291
```js
259
292
```
260
293
294
+
</div>
295
+
261
296
### Form
262
297
The [Kendo UI for jQuery Form]({% slug overview_kendoui_form_widget %}) provides a variety of built-in options and features to generate and manage forms in your application.
Copy file name to clipboardExpand all lines: docs/api/javascript/ui/sortable.md
+23Lines changed: 23 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -431,6 +431,29 @@ Control dragging behavior by specifying CSS selectors to exclude certain child e
431
431
});
432
432
</script>
433
433
434
+
### navigatable `Boolean`*(default: false)*
435
+
436
+
If set to true, the user can navigate the widget with the keyboard. By default, keyboard navigation is disabled.
437
+
438
+
439
+
<divclass="meta-api-description">
440
+
Enable, activate, or allow keyboard navigation, keyboard controls, or arrow key movement for sortable lists, sortable components, or draggable items, letting users interact, reorder, move, or traverse items using the keyboard instead of a mouse, support accessibility, tabbing, focus management, and keyboard shortcuts, configure keyboard support for sorting, and control whether users can use keys to navigate or rearrange sortable elements.
441
+
</div>
442
+
443
+
#### Example - Sortable with navigatable enabled
444
+
445
+
<ul id="sortable">
446
+
<li>ItemA1</li>
447
+
<li>ItemA2</li>
448
+
<li>ItemA3</li>
449
+
</ul>
450
+
451
+
<script>
452
+
$("#sortable").kendoSortable({
453
+
navigatable: true,
454
+
});
455
+
</script>
456
+
434
457
### placeholder `Function | String | jQuery`
435
458
436
459
Provides a way for customization of the sortable item placeholder. If a function is supplied, it receives one argument - the draggable element's jQuery object.
Copy file name to clipboardExpand all lines: docs/controls/window/custom-actions.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
If you supply a non-recognized action name, that name is treated as a custom action.
12
12
13
-
The Window then renders `k-icon` and `k-i-actionname` CSS classes for the action but does not automatically attach a `click` event handler to it. While the Kendo UI stylesheets provide a `"custom"` icon for custom actions, you can use any of the icon names. To capture and handle the `click` events, follow the standard approach.
13
+
The Window then renders `k-icon` and `k-svg-i-actionname` CSS classes for the action but does not automatically attach a `click` event handler to it. While the Kendo UI stylesheets provide a `"custom"` icon for custom actions, you can use any icon name from the [List of Icons](https://www.telerik.com/design-system/docs/foundation/iconography/icon-list/) to ensure the icon displays properly. To capture and handle the `click` events, follow the standard approach.
0 commit comments