Hi,
i have a kendo-grid that have a cell editing feature, and a custom template column that have a kendo-upload.
i'm facing 2 issues:
1st issue:
when the user clicks on the grid cell it shows the upload control after selecting file and uploading it if the focus of the cell is lost the upload is stopped
is there a way to change this behavior ?
Hi,
i'm using a the kendo treeView component and i want to load 2 different templates based on a specific parameter
i'm not able to do this and i'm always getting the first template that i'm setting
Thank you in advanced
Hi
I use the PDF Export to provide a printing option for some Grids
I have attached two files, one screenshot from the grid and the corresponding from the generated PDF
As you can see, the € sing is being replaced by a small < and "Ü" overlaps "ok" like there is no space reserverd for characters like öäüÖÄÜ
The call is configured with this parameters:
<
kendo-pdf-export
#pdf
paperSize
=
"A4"
landscape
=
"true"
margin
=
"1cm"
[scale]="0.4" *
ngIf
=
"printing"
>
<
event-assignment-print
[events]="gridData"></
event-assignment-print
>
</
kendo-pdf-export
>
best regards
Jürgen
Hello,
It's possible to display lines with different width and color between nodes?
Regards,
Bogdan
I'm getting the following warnings in the latest (8/30/18) version 1.5.0.
WARNING in ./node_modules/@progress/kendo-data-query/dist/es/odata.operators.js
WARNING in ./node_modules/@progress/kendo-data-query/dist/es/odata-filtering.operators.js
36:42-48 "export 'ifElse' was not found in './funcs'
WARNING in ./node_modules/@progress/kendo-data-query/dist/es/odata-filtering.operators.js
37:49-55 "export 'ifElse' was not found in './funcs'
WARNING in ./node_modules/@progress/kendo-data-query/dist/es/odata-filtering.operators.js
70:92-98 "export 'ifElse' was not found in './funcs'
Hi guys,
In the .xlf file, the text for "NO DATA FOUND" (which appears inside an empty kendo-dropdownlist) gets nothing generated for a translation. This means that currently I have my whole project translated, except for this text.
I suspect there is a way to add it to the messages.xlf file in which I have all the translations, but I'm at a loss as to how. Can you give me your insight?
Thank You Very Much for your time in advance!
Hi,
I was a little flabbergasted when I found out that the "AutoComplete" component only handles "Simple Data" - even though there is a parameter called "valueField" and a subtopic under "Data Binding" called "Complex Data". It is impossible to display i.e. the Name of a Person and have the ID of that person as the value of the "AutoComplete" component. Can you please enable this, it is imperative to working with an autocomplete textfield that value and text can be _different_ and that a value other than the selected text can be accessed.
const Members = [{name:
'Peter'
, value:1},{name:
'Paul'
, value:2},{name:
'Mary'
, value:3}]
<
kendo-autocomplete
#viewBandmembers [(ngModel)]="bandmembers"
name
=
"bandmembers"
[data]="Members" [filterable]="true" [valueField]="'value'"></
kendo-autocomplete
>
This will display 1,2 and 3 in the AutoComplete component!
Thanks in advance
Benjamin Müller
I'm using Kendo UI for Angular to render a table. The table works fine, and everything shows up. My question is if it's possible to add a new header row before the initial row, where it's possible to add custom values.
I've added two images, which shows the current and desired behavior.
I have a call to my api as follows:
getEntitiesForKendo() {
this
.gridLoading =
true
;
this
._kendoGridService.getEntities(
this
.gridSettings.state)
.subscribe((data) => {
data.data.forEach((d) => {
d.creationTime =
new
Date(d.creationTime);
d.warnings = d.warnings.split(
','
).map(Number);
});
this
.gridData = data;
this
.getOrganisationUnits();
this
.gridLoading =
false
;
});
}
In my grid I have two sparkline charts, the pie chart is working, the column chart is not. Here is my code:
<kendo-grid-column field=
"carePlanSectionsForReviewCount"
title=
"{{ l('CarePlanReviews')}}"
class=
"text-center"
width=
"120"
media=
"(min-width:720px)"
[filterable]=
"false"
>
<ng-template kendoGridCellTemplate let-dataItem>
<kendo-sparkline [chartArea]=
"{background: ''}"
[data]=
"[dataItem.carePlanSectionsForReviewTodayCount, dataItem.carePlanSectionsOverdueCount, dataItem.carePlanSectionsReviewedCount]"
style=
"width:30px; height:30px;"
[seriesColors]=
"['#ffb822', '#f4516c', '#34bfa3']"
type=
"pie"
>
</kendo-sparkline>
</ng-template>
</kendo-grid-column>
<kendo-grid-column field=
"warningCount"
title=
"{{ l('NcWarnings')}}"
class=
"text-center"
width=
"120"
media=
"(min-width:720px)"
[filterable]=
"false"
>
<ng-template kendoGridCellTemplate let-dataItem>
<kendo-sparkline [chartArea]=
"{background: ''}"
[data]=
"[dataItem.warnings]"
>
</kendo-sparkline>
{{dataItem.warnings | json}}
<!-- {{dataItem.warningCount}} -->
</ng-template>
</kendo-grid-column>
The results can be seen in the attached file. The array seems good, why does the sparkline for the warnings column not display?