Currenty i'm using kendo grid server site pagination and there is a problem with page size property. When i choose page size 'all' then i check request body on the web browser and i don't see pageSize property but when i choose 50 page size everything is OK.
{skip: 0, page: 1, sort: [{field: "Id", dir: "desc"}]} --> page size ALL
{skip: 0, pageSize:50, page: 1, sort: [{field: "Id", dir: "desc"}]} --> page size 50
var dataSource = new kendo.data.DataSource({
type: "json",
...
batch: false,
pageSize: 20,
serverPaging: true,
serverFiltering: true,
serverSorting: true,
schema: {
data: "Data",
total: "Total",
errors: "Errors",
model: {
id: "Id",
fields: fieldsCommon
}
}
});
var masterGrid = $("#" + divId).kendoGrid({
dataSource: dataSource,
edit: function (e) {
},
save: function (e) {
kendo.ui.progress($(".k-window"), true);
},
groupable: true,
sortable: true,
pageable: {
pageSizes: ['all', 10, 20, 50, 100],
refresh: true,
buttonCount: 5
},
selectable: true,
height: 450,
reorderable: true,
resizable: true,
columnMenu: false,
columns: [
...
]
}).data("kendoGrid");
Hello.
I am looking for way to manage resize columns by user in Angular 2
application. I saw in another versions of KendoUI Grid (for example in
AngularJS) that this is possible but I can't find any solution for that
in Angular 2 technology. Are you support that or it will be added
later?
Also I thinking about reorder columns. And like in last question, I
saw in another versions of KenduUI that this feature is implemented but I
can't find any way to do that in Angular 2? Should I wait for next
versions of Kendo or there is simple way to make it on my own now? Thank
you for any answers.
I am trying to dynamically nest grids within a kendo grid, up to 10 levels deep. Is there a good approach you can recommend to dynamically nest the ng-template data so it doesn't look bloated? This is only three hardcoded levels of nesting and already is bloated. Thanks in advance!
<
kendo-grid
>
<
kendo-grid-column
field
=
"ProductID"
title
=
"ID"
width
=
"40"
></
kendo-grid-column
>
<
ng-template
kendoGridDetailTemplate let-dataItem>
<
kendo-grid
>
<
kendo-grid-column
field
=
"ProductID"
title
=
"ID"
width
=
"40"
></
kendo-grid-column
>
<
ng-template
kendoGridDetailTemplate let-dataItem>
<
kendo-grid
>
<
kendo-grid-column
field
=
"ProductID"
title
=
"ID"
width
=
"40"
></
kendo-grid-column
>
<
ng-template
kendoGridDetailTemplate let-dataItem>
</
ng-template
>
</
kendo-grid
>
</
ng-template
>
</
kendo-grid
>
</
ng-template
>
</
kendo-grid
>
Hi,
is there an option to disable the auto-submit of the data from search toolbar of the grid? It's not very efficient in our case with a remote datasource to query the DB for data on every change. We'd like to disable this feature and submit on enter/click.
Having difficulty displaying a page which contains a Kendo Grid. @(Html.Kendo().Grid(Model)... Running the application through VS 2017. I have a menu page with four selections, one selection (a button) is the option to display data, in a separate page, using a Kendo Grid. If I place breakpoints in the controller and one in the view, @(Html.Kendo().Grid(Model).., the page displays, with the data as expected at it works fine. If I remove the breakpoints, the app will not display the page with the Kendo Grid, no error, it does nothing. I've been using Google Chrome and I've hit the F12 to display developer options but I'm not seeing any explicit errors.
Any ideas on why this might occur?
categoryAxis: { labels: { rotation: -90, format:
'dd MM yyyy'
} }
In the sample code for the listview the following CSS appears. I've adapted the sample code for my app but I don't understand the purpose of this CSS. When I remove it the pager doesn't display properly. So I'd appreciate an explanation.
.k
-listview:after {
content: ".";
display: block;
height: 0;
clear: both;
v
isibility: hidden
}
Dear progress folks,
since we are currently updating our software product to the newest typescript version and also updating all our libraries we encountered the following:
Typescript 3.9.x does not work with Kendo-UI 2020.2.617. To get things to work we use TS 3.8.x.
I know TS 3.9 released in May and Kendo-UI 2020.2.x released in February where TS 3.8 was also released.
I just want to let you know. Also I want to know what your strategy regarding the minor releases of TS is. Which versions do you plan to support?
Here also some details what did not work (Chrome browser version: 83):
No exception was thrown.Chart is displayed with axes as configured. However, if we retrieve data via a datasource binding the curves were not displayed.
BR
Hi ,
I am facing below issues in Grid related to ADA compliance using JAWS
Note i ahve already applied .Navigatable() property in Grid
1)Grid is not reading the column name when Cell is selected
2)Cell color is not readed.
Please help me on this.
Thanks
Mohammed