I am using the WindowService to open a window and passing in a template for the content. Once the user performs their action within the window, I want to close it.
I tried adding
public window : WindowRef
to my constructor, but this threw an error, 'No provider for WindowRef'
Using formBuilder to create a reactive form when I noticed that it turns array properties in to the first object in the array. This is breaking my multiselect drop down as it is expecting an array.
I create a stack blitz demonstration.
https://stackblitz.com/edit/angular-bnet6z?file=src%2Fapp%2Fapp.component.ts
This is based off of you https://www.telerik.com/kendo-angular-ui/components/dropdowns/multiselect/forms/#toc-reactive-forms demonstration where I changed the form building to use the form builder.
Multiselect then reports these errors.
Hello,
I need to highlight using a css the filtered strings in a kendo ui multiselect for angular.
Is there an option for this?
Thanks
I want to hide the toolbar that is framed in red. How can it be done?
<kendo-drawer-container>
<kendo-drawer
#drawer
[items]="drawerItems"
[mode]="'push'"
[mini]="true"
[expanded]="false"
(select)="onDrawerSelect($event)"
drawerItems: DrawerRoutingItem[] = [
{
svgIcon: ?????????,
text: "Chargements",
path: "",
selected: window.location.pathname==="/"
},
{
svgIcon: ????????????,
text: "Horaire des reprises",
path: "horaire",
selected: window.location.pathname==="/horaire"
}
];
I have a chargements.svg file in an Assets directory however the svgIcons in drawerItems will only take SVGIcon object from @progress/kendo-svg-icons
How can I use my own svg files inside the drawerItems array?
I am trying to get rid of the current ng-deep use cases in our app.
The class that being override is as follows:
css:
::ng-deep .k-chat.k-selected {
margin-bottom: 0px !important;
};
html:
<kendo-chat class="chatbox" [messages]="messages" [user]="user">
<ng-template kendoChatMessageTemplate let-message>
<div [innerHTML]="message.text | sanitizeHtml"></div>
</ng-template>
</kendo-chat>
Hi I am trying to style default item select in my project but when i inspect select item in browser through element it is showing Kendo-popup k-animation-container k-animation-container-shown but it is not showing default item elements select to change the styling for the default item select can you please let me know what class will be for default item select to change styling
https://www.telerik.com/kendo-angular-ui/components/dropdowns/dropdownlist/default-item/
Hi,
can i use format = "mm/dd/yyyy" mm in short format i used like this in my project but it is not taking month correctly only if i use as below
format="MM/dd/yyyy"
format="mm/dd/yyyy"
please let me know if i can use this format and achieve month working correctly i am referring to placeholders as per below
https://www.telerik.com/kendo-angular-ui/components/dateinputs/datepicker/placeholders/
Hello All,
I've got a product owner that requires the in-cell editing without needing to press Enter button. They want the cell to automatically enter edit mode simply by arrowing around the grid. My dev team is struggling to make this happen. Any suggestions or samples that would help us accomplish this? If we aren't able to make this work, we will have to use an entirely different framework (or roll our own) for grids, which I'm hoping to avoid.
Thanks