Skip to content

Commit 29a21e8

Browse files
author
Kendo Bot
committed
Sync with Kendo UI Professional
1 parent a0cc307 commit 29a21e8

File tree

613 files changed

+1825
-3337
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

613 files changed

+1825
-3337
lines changed

docs/knowledge-base/access-editor-control.md

Lines changed: 7 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
---
2-
title: Access Editor Controls in Edit Events
3-
page_title: jQuery Grid Documentation | Editor Controls in Edit Events | Kendo UI
4-
description: "Get started with the jQuery Grid by Kendo UI and learn how to access an editor control in the edit event handler of the widget."
2+
title: Access Editor Controls in edit Events
3+
page_title: Access Editor Controls in edit Events | Kendo UI Grid for jQuery
4+
description: "An example on how to access an editor control in the edit event handler of the Kendo UI Grid for jQuery."
55
previous_url: /controls/data-management/grid/how-to/Editing/access-editor-control
66
slug: howto_access_editor_controlsin_edit_events_grid
7+
tags: grid, editor, edit, events
8+
component: grid
9+
type: how-to
10+
res_type: kb
711
---
812

9-
# Access Editor Controls in Edit Events
10-
1113
The following example demonstrates how to access an editor in the `edit` event handler of the Grid.
1214

1315
The functionality relies on the following concepts:
@@ -16,8 +18,6 @@ The functionality relies on the following concepts:
1618

1719
For brevity, the following demo does not include the configuration for the Data Source transport. However, for the [CRUD operations]({% slug cruddataoperations_kendoui_datasourcecomponent %}) to work properly, they require a transport configuration.
1820

19-
###### Example
20-
2121
```dojo
2222
<script src="https://demos.telerik.com/kendo-ui/content/shared/js/products.js"></script>
2323
<div id="example">
@@ -97,20 +97,3 @@ For brevity, the following demo does not include the configuration for the Data
9797
## See Also
9898

9999
* [JavaScript API Reference of the Grid](/api/javascript/ui/grid)
100-
* [How to Add New Rows When Tabbing out of the Last One]({% slug howto_add_new_rows_when_tabbingoutof_thelast_one_grid %})
101-
* [How to Build Custom dataSource for Custom Editor]({% slug howto_build_custom_datasourcefor_custom_editor_grid %})
102-
* [How to Customize the Delete Confirmation Dialog]({% slug howto_customize_delete_confirmation_dialog_grid %})
103-
* [How to Delete Multiple Rows Selected with Checkboxes]({% slug howto_delete_rows_selectedwith_checkboxes_grid %})
104-
* [How to Edit Records in Child Grids]({% slug howto_edit_recordsin_children_grid %})
105-
* [How to Edit Records Using External Forms]({% slug howto_edit_records_using_external_forms_grid %})
106-
* [How to Increase Popup Edit Form and Textbox Width]({% slug howto_increase_popup_edit_formand_textbox_grid %})
107-
* [How to Preserve Dirty Indicator in Incell Editing and Client Operations]({% slug howto_preserve_dirty_indicator_incell_editing_client_operations_grid %})
108-
* [How to Render Grid Editor in Column Template]({% slug howto_render_editor_column_template_grid %})
109-
* [How to Show Custom Editor Using the Selected Item outside the Grid]({% slug howto_use_show_custom_editor_selected_item_outside_grid %})
110-
* [How to Skip Non-editable Cells When Tabbing]({% slug howto_skip_noneditable_cells_when_tabbing_grid %})
111-
* [How to Use AutoComplete as Custom Column Editor]({% slug howto_use_autocompleteas_custom_column_editor_grid %})
112-
* [How to Use CRUD Operations When Grid Is Bound through MVVM]({% slug howto_use_crud_operationswith_mvvmbound_grid %})
113-
* [How to Use Editors Based on Data Item Property]({% slug howto_use_editors_basedon_dataitem_property_grid %})
114-
* [How to Use TreeView as Custom Editor]({% slug howto_usethe_treeview_aseditor_grid %})
115-
116-
For more runnable examples on the Kendo UI Grid, browse its [**How To** documentation folder]({% slug howto_adjust_row_heights_template_locked_columns_grid %}).

docs/knowledge-base/access-the-selected-data-value-field-on-the-listbox-change-event.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
---
22
title: Access Selected DataValueField
3+
page_title: Access the Selected DataValueField on the ListBox change Event | Kendo UI ListBox for ASP.NET MVC
34
description: An example on how to access the selected DataValueField on the Kendo UI ListBox change event.
4-
type: how-to
5-
page_title: Access the Selected DataValueField on the ListBox Change Event | UI for ASP.NET MVC
65
slug: access-the-selected-data-value-field-on-the-listbox-change-event
76
ticketid: 1118759
7+
type: how-to
88
res_type: kb
9+
component: listbox
910
---
1011

1112
## Environment
@@ -57,7 +58,7 @@ How can I get the `DataValueField` from the selected item on the `change` event
5758
## Solution
5859

5960
1. Retrieve the selected element.
60-
1. Based on the selected element, retrieve the information for the `dataItem` that is associated with the following line:
61+
1. Based on the selected element, retrieve the information for the `dataItem` that is associated with the following line:
6162

6263
```
6364
function onChange(e) {
@@ -68,5 +69,5 @@ How can I get the `DataValueField` from the selected item on the `change` event
6869
```
6970
7071
For more information, refer to the articles on:
71-
* The [`select`](http://docs.telerik.com/kendo-ui/api/javascript/ui/listbox/methods/select) event of the ListBox.
72-
* The [`dataItem`](http://docs.telerik.com/kendo-ui/api/javascript/ui/listbox/methods/dataitem) method of the ListBox.
72+
* The [`change`](/api/javascript/ui/listbox/events/change) event of the ListBox.
73+
* The [`dataItem`](/api/javascript/ui/listbox/methods/dataitem) method of the ListBox.

docs/knowledge-base/add-a-progressbar-in-a-grid-cell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
title: Add ProgressBars to Grid Cells
3+
page_title: Add a ProgressBar to Cells | Kendo UI Grid for jQuery
34
description: An example on how to add a ProgressBar to a cell in the Kendo UI Grid.
45
type: how-to
5-
page_title: Add a ProgressBar to Cells | Kendo UI Grid
66
slug: add-a-progressbar-in-a-grid-cell
77
previous_url: /knowledge-base/how-to-add-a-progressbar-in-a-grid-cell
88
tags: grid, progressbar

docs/knowledge-base/add-background-sorted-columns-LESS-themes.md

Lines changed: 8 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,36 @@
11
---
22
title: Add Background Color to Sorted Columns by Using LESS Themes
3-
page_title: jQuery Grid Documentation | Background Color with LESS Themes | Kendo UI
4-
description: "Get started with the jQuery Grid by Kendo UI and learn how to add a background color to the sorted columns using the LESS themes."
3+
page_title: Add Background Color with LESS Themes | Kendo UI Grid for jQuery
4+
description: "An example on how to add a background color to the sorted columns of the Kendo UI Grid for jQuery by using the LESS themes."
55
previous_url: /controls/data-management/grid/how-to/Layout/add-background-sorted-columns-LESS-themes
66
slug: howto_add_background_sorted_columns_LESS_themes_grid
7+
tags: backaground, color, less, themes, columns, grid
8+
component: grid
9+
type: how-to
10+
res_type: kb
711
---
812

9-
# Add Background Color to Sorted Columns by Using LESS Themes
10-
1113
Your project might require you to add a background color to the sorted columns of the Grid by using the [LESS themes]({% slug themesandappearnce_kendoui_desktopwidgets %}).
1214

1315
To achieve this behavior:
1416

1517
1. Change the default background of the alternate row to an RGBA color format with a low opaque level.
1618
1. Add the background color to the `.k-sorted` class by using the RGBA color format.
1719

18-
> **Important**
1920
> * The `.k-sorted` class is available as of the Kendo UI 2017 R2 SP1 release.
2021
> * If you do not override the `k-alt` class, the background color of the `.k-sorted` class will not apply.
2122
22-
## Scenarios
23-
2423
The following examples demonstrate how to change the background color of selected rows in a Grid when working with:
2524

2625
* [Dark themes](#dark-themes)
2726
* [Light themes](#light-themes)
2827

29-
### Dark Themes
28+
## Dark Themes
3029

3130
When your project uses a dark theme, use light colors for the background of the selected rows.
3231

3332
The following example demonstrates how to apply the suggested background colors to the selected Grid rows if your project uses the Black or Material Black theme.
3433

35-
###### Example
36-
3734
```tab-Black
3835
.k-grid .k-alt {
3936
background-color: rgba(255, 255, 255, 0.04);
@@ -51,14 +48,12 @@ The following example demonstrates how to apply the suggested background colors
5148
}
5249
```
5350

54-
### Light Themes
51+
## Light Themes
5552

5653
When your project uses a light theme, use dark colors for the background of the selected rows.
5754

5855
The following example demonstrates how to apply the suggested background colors to the selected Grid rows if your project uses the Default or Material theme.
5956

60-
###### Example
61-
6257
```tab-Default
6358
.k-grid .k-alt {
6459
background-color: rgba(0, 0, 0, 0.06);
@@ -79,7 +74,3 @@ The following example demonstrates how to apply the suggested background colors
7974
## See Also
8075

8176
* [JavaScript API Reference of the Grid](/api/javascript/ui/grid)
82-
* [How to Implement Stable Sort in Chrome]({% slug howto_implement_stable_sortin_chrome_grid %})
83-
* [Grid Sorting Demo](http://demos.telerik.com/kendo-ui/grid/sorting)
84-
85-
For more runnable examples on the Kendo UI Grid, browse its [**How To** documentation folder]({% slug howto_adjust_row_heights_template_locked_columns_grid %}).

docs/knowledge-base/add-custom-filters.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
title: Combine Regular and Custom Filters in Grid for ASP.NET MVC
3+
page_title: Add Custom Filters to Grid | Kendo UI Grid for ASP.NET MVC
34
description: An example on how to combine custom with build-in filters in a Kendo UI Grid for ASP.NET MVC.
45
type: how-to
5-
page_title: Add Custom Filters in Grid | UI for ASP.NET MVC
66
previous_url: /knowledge-base/how-to-add-custom-filters
77
slug: add-custom-filters
88
tags: grid, filter
@@ -55,7 +55,7 @@ component: grid
5555

5656
## Description
5757

58-
I have an ASP.NET MVC Grid with regular filters and local filtering. How can I add custom filters and combine the regular filters with the custom ones?
58+
I have a Kendo UI Grid for ASP.NET MVC with regular filters and local filtering. How can I add custom filters and combine the regular filters with the custom ones?
5959

6060
## Solution
6161

docs/knowledge-base/add-footer-to-month-and-agenda-views.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
title: Add Footer to Month and Agenda Views in Scheduler
3+
page_title: Add Footer to Month and Agenda Views | Kendo UI Scheduler for jQuery
34
description: An example on how to add a footer to the month and agenda views of the Kendo UI Scheduler.
45
type: how-to
5-
page_title: Add Footer to Month and Agenda Views | Kendo UI Scheduler
66
slug: add-footer-to-month-and-agenda-views
77
tags: add, footer, month, agenda, views, scheduler
88
ticketid: 1116003

docs/knowledge-base/add-row-numbers.md

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
---
22
title: Add Row Numbers
3-
page_title: jQuery Grid Documentation | Add Row Numbers | Kendo UI
4-
description: "Get started with the jQuery Grid by Kendo UI and learn how to implement row numbers to the widget."
3+
page_title: Add Row Numbers | Kendo UI Grid for jQuery
4+
description: "An example on how to implement row numbers in the Kendo UI Grid for jQuery."
55
previous_url: /controls/data-management/grid/how-to/Templates/add-row-numbers
66
slug: howto_addrownumbers_grid
7+
tags: grid, row, numbers
8+
component: grid
9+
type: how-to
10+
res_type: kb
711
---
812

9-
# Add Row Numbers
10-
1113
The following example demonstrates how to implement row numbers in a Grid by using the [`page()`](/api/javascript/data/datasource/methods/page) and [`pageSize()`](/api/javascript/data/datasource/methods/pagesize) methods of the Data Source.
1214

13-
###### Example
14-
1515
```dojo
1616
<div id="grid"></div>
1717
<script>
@@ -53,11 +53,3 @@ The following example demonstrates how to implement row numbers in a Grid by usi
5353
## See Also
5454

5555
* [JavaScript API Reference of the Grid](/api/javascript/ui/grid)
56-
* [How to Implement Stable Sort in Chrome]({% slug howto_implement_stable_sortin_chrome_grid %})
57-
* [How to Initialize Data Attribute with Detail Template]({% slug howto_initialize_data_attributewith_detail_template_grid %})
58-
* [How to Persist Expanded Rows after Refresh]({% slug howto_persist_expanded_rows_afetrrefresh_grid %})
59-
* [How to Set Cell Color Based on ForeignKey Values]({% slug howto_set_cell_color_basedon_foreignkey_values_grid %})
60-
* [How to Show Tooltip for Column Records]({% slug howto_show_tooltipfor_column_records_grid %})
61-
* [How to Update Toolbar Content Using MVVM Binding]({% slug howto_update_toolbar_content_using_mvvmbinding_grid %})
62-
63-
For more runnable examples on the Kendo UI Grid, browse its [**How To** documentation folder]({% slug howto_adjust_row_heights_template_locked_columns_grid %}).

docs/knowledge-base/add-row-when-tabbed-out-of-last-row.md

Lines changed: 6 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
---
22
title: Add New Rows When Tabbing Out of the Last One
3-
page_title: jQuery Grid Documentation | Add Row When Tabbed Out | Kendo UI
4-
description: "Get started with the jQuery Grid by Kendo UI and learn how to add a new row to the widget when the user navigates out of the last one."
3+
page_title: Add New Rows When Tabbed Out | Kendo UI Grid for jQuery
4+
description: "An example on how to add a new row to the Kendo UI Grid for jQuery when the user navigates out of the last one."
55
previous_url: /controls/data-management/grid/how-to/Editing/add-row-when-tabbed-out-of-last-row
66
slug: howto_add_new_rows_when_tabbingoutof_thelast_one_grid
7+
tags: grid, rows, tabbing
8+
component: grid
9+
type: how-to
10+
res_type: kb
711
---
812

9-
# Add New Rows When Tabbing Out of the Last One
10-
1113
The following example demonstrates how to add a new row when the user navigates out of the last row in the Grid.
1214

13-
###### Example
14-
1515
```dojo
1616
<div id="grid"></div>
1717
<script>
@@ -73,19 +73,3 @@ The following example demonstrates how to add a new row when the user navigates
7373
## See Also
7474

7575
* [JavaScript API Reference of the Grid](/api/javascript/ui/grid)
76-
* [How to Build Custom dataSource for Custom Editor]({% slug howto_build_custom_datasourcefor_custom_editor_grid %})
77-
* [How to Customize the Delete Confirmation Dialog]({% slug howto_customize_delete_confirmation_dialog_grid %})
78-
* [How to Delete Multiple Rows Selected with Checkboxes]({% slug howto_delete_rows_selectedwith_checkboxes_grid %})
79-
* [How to Edit Records in Child Grids]({% slug howto_edit_recordsin_children_grid %})
80-
* [How to Edit Records Using External Forms]({% slug howto_edit_records_using_external_forms_grid %})
81-
* [How to Increase Popup Edit Form and Textbox Width]({% slug howto_increase_popup_edit_formand_textbox_grid %})
82-
* [How to Preserve Dirty Indicator in Incell Editing and Client Operations]({% slug howto_preserve_dirty_indicator_incell_editing_client_operations_grid %})
83-
* [How to Render Grid Editor in Column Template]({% slug howto_render_editor_column_template_grid %})
84-
* [How to Show Custom Editor Using the Selected Item outside the Grid]({% slug howto_use_show_custom_editor_selected_item_outside_grid %})
85-
* [How to Skip Non-editable Cells When Tabbing]({% slug howto_skip_noneditable_cells_when_tabbing_grid %})
86-
* [How to Use AutoComplete as Custom Column Editor]({% slug howto_use_autocompleteas_custom_column_editor_grid %})
87-
* [How to Use CRUD Operations When Grid Is Bound through MVVM]({% slug howto_use_crud_operationswith_mvvmbound_grid %})
88-
* [How to Use Editors Based on Data Item Property]({% slug howto_use_editors_basedon_dataitem_property_grid %})
89-
* [How to Use TreeView as Custom Editor]({% slug howto_usethe_treeview_aseditor_grid %})
90-
91-
For more runnable examples on the Kendo UI Grid, browse its [**How To** documentation folder]({% slug howto_adjust_row_heights_template_locked_columns_grid %}).

docs/knowledge-base/adjust-bar-chart-height-by-number-of-bars.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
title: Adjust the Chart Height Dynamically
3+
page_title: Dynamically Adjust the Height According to the Number of Bars | Kendo UI Chart for jQuery
34
description: An example on how to dynamically adjust the height of a Kendo UI Bar Chart depending on the number of the available bars.
45
type: how-to
5-
page_title: Dynamically Adjust the Height According to the Number of Bars | Kendo UI Chart
66
slug: adjust-bar-chart-height-by-number-of-bars
77
tags: chart, bar chart, height, adjust, bars
88
ticketid: 1097053

docs/knowledge-base/adjust-row-heights-for-grid-with-locked-columns.md

Lines changed: 6 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,21 @@
11
---
22
title: Adjust Row Heights When Columns Are Locked
3-
page_title: jQuery Grid Documentation | Row Heights of Locked Columns | Kendo UI
4-
description: "Get started with the jQuery Grid by Kendo UI and learn how to adjust the height of its rows when columns are locked."
3+
page_title: Row Heights of Locked Columns | Kendo UI Grid for jQuery
4+
description: "An example on how to adjust the height of the Kendo UI Grid for jQuery rows when columns are locked."
55
previous_url: /controls/data-management/grid/how-to/AngularJS/adjust-row-heights-for-grid-with-locked-columns
66
slug: howto_adjust_row_heights_template_locked_columns_grid
7-
position: 1
7+
tags: grid, adjust, row, height, locked
8+
component: grid
9+
type: how-to
10+
res_type: kb
811
---
912

10-
# Adjust Row Heights When Columns Are Locked
11-
1213
You might have to handle a scenario with locked columns where the content of the column template is initially hidden through the `ng-if` directive.
1314

1415
In such cases, if you show the content later, you might cause issues related to the proper calculation of the row heights for the locked and unlocked parts of the Grid. To avoid such possible issues, conditionally call the [`resize()`](/api/javascript/kendo/methods/resize) and [`refresh()`](/api/javascript/ui/grid/methods/refresh) methods of the Grid in its [`dataBound`](/api/javascript/ui/grid/events/databound) event when the scope value that controls the visibility of the template content is changed.
1516

1617
The following example demonstrates how to adjust the row heights in a Kendo UI Grid with locked columns and with a column template that uses the `ng-if` directive.
1718

18-
###### Example
19-
2019
```dojo
2120
<div id="example" ng-app="KendoDemos">
2221
<div ng-controller="MyCtrl">
@@ -96,11 +95,3 @@ The following example demonstrates how to adjust the row heights in a Kendo UI G
9695
## See Also
9796

9897
* [JavaScript API Reference of the Grid](/api/javascript/ui/grid)
99-
* [How to Bind to Telerik Backend Services]({% slug howto_bindto_telerik_backend_services_grid %})
100-
* [How to Change Languages Dynamically]({% slug howto_dynamic_language_change %})
101-
* [How to Create Custom ToolBar Templates]({% slug howto_create_custom_toolbar_templates_grid %})
102-
* [How to Create Custom Edit Buttons]({% slug howto_create_custom_edit_buttons_grid %})
103-
* [How to Use Resize Columns from a Button]({% slug howto_resize_columnsfrom_abutton_grid %})
104-
* [How to Use AngularJS in Popup Editor Templates]({% slug howto_use_angularin_popup_editor_templates_grid %})
105-
106-
For more runnable examples on the Kendo UI Grid, browse its **How To** documentation folder.

0 commit comments

Comments
 (0)