Telerik Forums
Kendo UI for Angular Forum
5 answers
86 views

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 ?

 

 

 

 

Dimiter Madjarov
Telerik team
 answered on 06 Sep 2018
1 answer
81 views

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 

Salim
Top achievements
Rank 1
 answered on 06 Sep 2018
1 answer
635 views

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

 

WenatexIT
Top achievements
Rank 1
 answered on 05 Sep 2018
3 answers
576 views

Hello,

It's possible to display lines with different width and color between nodes?

Regards,

Bogdan

 

Svet
Telerik team
 answered on 05 Sep 2018
8 answers
1.9K+ views
Hello,
I have a date field where i need to use a filter, but the main problem for my case is that i don't have an opportunity to edit filter options(e.g. is equal to, is not equal to, is after...) that are shown in the dropdown. In my case i need to use only four of them (equal, before, after, ends), so if there is a way to specify what exact options could be shown, I would like to know. 
Regards,
Edik
Svet
Telerik team
 answered on 05 Sep 2018
2 answers
138 views

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
15:52-58 "export 'ifElse' was not found in './funcs'
 
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'

 

Shawn
Top achievements
Rank 1
 answered on 04 Sep 2018
1 answer
602 views

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!

Svet
Telerik team
 answered on 03 Sep 2018
3 answers
980 views

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

Dimiter Topalov
Telerik team
 answered on 30 Aug 2018
1 answer
1.0K+ views

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.

Svet
Telerik team
 answered on 29 Aug 2018
2 answers
219 views

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?

Bob
Top achievements
Rank 1
Veteran
 answered on 28 Aug 2018
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?