Hi Experts,
I want display ToolTips on Dropdown list options. I tried to use use kendoPopoverContainer, but the filter can't work. Can someone share me some idea for this? Thanks.
<div kendoPopoverContainer filter=".hasHint" [popover]="myPopover" showOn="hover">
<kendo-label [for]="lookupTypesList" text="Lookup Type:"></kendo-label>
<kendo-dropdownlist displayTextField="Text"
textField="Text"
valueField="Text"
[data]="lookupFields"
(valueChange)="setLookupField($event)"
#lookupTypesList>
<ng-template kendoDropDownListItemTemplate let-dataItem>
<span class="hasHint" *ngIf="(dataItem.Note != '')">{{ dataItem.Text }}</span>
<span *ngIf="(dataItem.Note =='')">{{ dataItem.Text }}</span>
</ng-template>
</kendo-dropdownlist>
</div>
<kendo-popover #myPopover body="Has Hint">
</kendo-popover>
public lookupFields: any = [
Hi ,
I want to design a grid interface which can be used to create a simple grid or complex grid.
Requirements;-
1) Simple grid columns or grid with multiple span columns.
2) Filter, Custom Filter & Multi Select dropdown Filters
3) Columns with editable controls features like fields having text fields, dropdown fields and radio buttons.
What I have done:-
To achieve above requirements I have created below things
1) Created a grid interface.
2) Create a grid config file having different properties for different functionality. This will be loaded while creating the grid.
Issues:-
But my template file becomes too big to meet all my custom and complex requirements. It is now very difficult to maintain.
How could I design the grid interface so that all the functionality will be properly distributed and connected?
Hello,
I would like to try Kendo line chart.
The feature I'm looking for:
On the line chart I want to mark a rectangle (x0<x<x1, y0<y<y1)
Only this rectangle will be zoom in.
Also: I'm working with cli 8.3.8
Is it possible to use Kendo with this version ?
Thank you,
Zvika
I have a kendo-grid with pageable set to true and can navigate to page 2. This all works fine. (see below)
If I then reload the grid data with new data, the view is still on page 2. How do I force a reset so the grid goes back to page 1?
Hi All,
There' are some accessibility errors shown in 'WAVE' tool when Kendo Treeview is scanned. It says 'Empty form label'. The labels don't seem to have any text associated with it. Any fix to overcome this issue?
Below are the screenshots of Telerik Demo of the control, when scanned.
Thanks,
Milinda
I'm interested in potentially making use of the jQuery FileManager widget within a project that exclusively uses Kendo UI for Angular.
I was wondering if there's a prescribed way to be able to include the jQuery component and/or if there are plans to port it to Angular.
The pager page-size template is keeping track of the records per page , but when kendo grid page is grouped on any column, the page-size drop-down (pager-template) should consider the the group count per page , not the no of records on that page and then display the result.
below is the link to the live demo application .
https://vtotbi.run.stackblitz.io
check the screen-shot , items per-page is 5 and it is displaying 5 records as well ,but the requirement is :
It should display 5 groups for this page .