Tring to right align the header and data in selected columns in a grid as follows
<kendo-grid-column field="outstandingValue" title="Outstanding Value" width="100" [style]="{'text-align': 'right'}" [headerStyle]="{'text-align': 'right'}" [filterable]="false">
<ng-template kendoGridHeaderTemplate>
Outstanding Value
</ng-template>
<ng-template kendoGridCellTemplate let-dataItem let-rowIndex="rowIndex">
{{dataItem.outstandingValue | currency : 'GBP'}}
</ng-template>
</kendo-grid-column>
The data is right aligned but the header styling does not work?
Hi,
Could i disable one or many tabs from an child component contained in this tabstrip
Regards
how to customize, using scss and variables the font size of the dropdownLists?
Actually is 16px, but i need smaller one
I am a .NET dev. Now learning Angular. I have created Angular solution use ASP.NET Core with Angular template. I have that running with a sample screen. Now I would like to use Telerik Kendo UI for Angular components and I don't have the slight idea how to install them. For Blazor we just installed from the Progress Control panel and added the NuGet packages in the VS Package manager. For Angular I have no idea. Can someone tell me how to get started? I have looked thru the doco online here but nothing seems to address using them in Visual Studio.
I use <kendo-grid-filter-cell> in my grid to filter dates.
These filter don't work
Do you know why these filter don't work.
<kendo-grid
[kendoGridBinding]="collaborateurData"
[filterable]="true"
[resizable]="true"
[sortable]="true"
[pageable]="true"
[pageSize]="15"
class="table"
>
<!-- Colonne Date Entrée Groupe -->
<kendo-grid-column field="DateEntreeGroupe" title="Date Entrée Groupe">
<ng-template kendoGridFilterCellTemplate let-filter let-column="column">
<kendo-grid-date-filter-cell
[column]="column"
[filter]="filter"
[showOperators]="false"
[format]="format"
[formatPlaceholder]="{
day: 'J',
month: 'M',
year: 'yyyy',
hour: 'h',
minute: 'min',
second: 's'
}"
>
</kendo-grid-date-filter-cell>
</ng-template>
<ng-template kendoGridCellTemplate let-collaborateur>
<a
[routerLink]="[
'collaborateurs',
collaborateur.TypeSalarie,
collaborateur.Id
]"
>{{ collaborateur.DateEntreeGroupe | date: 'yyyy-dd-MM' }}</a
>
</ng-template>
</kendo-grid-column>
</kendo-grid>
Hi
fieldset [disabled] not running on an kendo-grid for disabeling all selection
So i have tried [selectable], that"s ok first time , i could unselect my grid, But after i could not select it even if my boolean change ?
Why ?
[selectable]="!isFormEnabled()"
are there any way to do like this ?- style row in the grid
We were excited to see the new Filter component in the latest release of Kendo Angular, and are wondering if there is any way to customize it or extend it. For example, we'd like to use a different FilterEditor, like a multi-select, and potentially some more advanced customization like comparing and doing some basic calculations across two fields.
It doesn't look like the current version supports that level of customization, but is there a recommended approach for extending the component to add our own functionality? Thanks!
https://stackblitz.com/edit/angular-xrfu5g-6fw38x
Error: src/app/app.component.ts:91:83 - error TS2339: Property 'field' does not exist on type 'FilterDescriptor | CompositeFilterDescriptor'.
Hi
what is mistake ?
Regards