Skip to content

Commit 890a3ce

Browse files
author
Kendo Bot
committed
Sync with Kendo UI Professional
1 parent b9daff1 commit 890a3ce

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

docs-aspnet-mvc/helpers/grid/excel-export.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ By default, the Kendo UI Grid exports only the current page of data. To export a
7575

7676
> **Important**
7777
>
78-
> When the `AllPages` option is set to `true` the Grid makes a `read` request for all data. If the data items are too many, the browser may become unresponsive. Consider implementing server-side export for such cases.
78+
> When the `AllPages` option is set to `true` the Grid makes a `read` request for all data. If the data items are too many, the browser may become unresponsive. Consider implementing [server-side export](#use-server-side-processing) for such cases.
7979
8080
The following example demonstrates how to export all the data.
8181

src/kendo.virtuallist.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -576,7 +576,12 @@ var __meta__ = { // jshint ignore:line
576576
}
577577
});
578578
} else {
579-
that.select([-1]);
579+
if (!that.value()[0]) {
580+
that.select([-1]);
581+
} else {
582+
that._selectingValue = false;
583+
that._triggerListBound();
584+
}
580585
}
581586
},
582587

src/messages/kendo.messages.fr-FR.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ $.extend(true, kendo.ui.FilterCell.prototype.options.operators,{
3434
"isnull": "Est nulle",
3535
"isnotnull": "N’est pas nulle",
3636
"isempty": "Est vide",
37-
"isnotempty": "N’est pas vide"
37+
"isnotempty": "N’est pas vide",
38+
"isnullorempty": "A une valeur",
39+
"isnotnullorempty": "N'a pas de valeur"
3840
},
3941
"enums": {
4042
"eq": "Est égal à",
@@ -80,7 +82,9 @@ $.extend(true, kendo.ui.FilterMenu.prototype.options.operators,{
8082
"isnull": "Est nulle",
8183
"isnotnull": "N’est pas nulle",
8284
"isempty": "Est vide",
83-
"isnotempty": "N’est pas vide"
85+
"isnotempty": "N’est pas vide",
86+
"isnullorempty": "A une valeur",
87+
"isnotnullorempty": "N'a pas de valeur"
8488
},
8589
"enums": {
8690
"eq": "Est égal à",

0 commit comments

Comments
 (0)