Hi Telerik
I modified your example as in example Stackblitz . When i filtered one column i cannot see color changed and cannot understand is it filtered or not and also when i add new filter and then clear it all the data returns to me but in your example it should return back first filter.
Is it a bug?
Thanks

Hello everyone, I have a kendo-expansionpanel defined like this:
<kendo-expansionpanel gdArea="filters" [title]="expandedState ? initialPannelTitle : pannelTitleFilters" [(expanded)]="expandedState">
- pannelTitleFilters is a string that consists of multiple key: values, here's an example of how it can look (style included):
EXTRA: ALL - Initial state: executed - STAINING: all - acceptance date: today - location: milan
I've been asked to make everything that specifies the filter bold, so the result would be something like:
EXTRA: ALL - INITIAL STATE: EXECUTED - STAINING: ALL - ACCEPTANCE DATE: TODAY - LOCATION: MILAN
I am struggling to find a way to do that: [innerHTML] instead of [title] breaks the component, as it removes the styles and it doesn't make possible to expand or collapse the panel.
NOTE: the string is generated using the function below, so it'd be possible for me to put some "special characters" (eg: **) to surround the parts that need to be bolded, but I didn't find any pipe that would make the text bolded without the use of innerHTML. How can I solve this?
for (let [key, value] of Object.entries(obj)) {
// Filter out falsey values
if (Boolean(value)) {
// Manage multiselect string
if (Array.isArray(value)) {
let tmp = value.join();
// Truncate string if it exceeds max length
if (tmp.length > maxStringLenght) {
value = tmp.substring(0, maxStringLenght).concat('...');
} else {
value = tmp;
}
}
// eg: LOCATION: MILAN -
title += `${key}: ${value}${separator}`
}
}
// Remove last separator
return title.trim().substring(0, title.length - 2);
}I'm trying to adapt the kendo-stepper (with vertical position) so that I can display it as a type of collapsable between each step.
Something like this:
https://material.angular.io/components/stepper/overview
but I can't do it, in the image I attached a couple of examples
In an existing project, I need to export some part of my document as PDF, so I read the doc for the pdf export here
"3. The next step is to style the component by installing one of the available Kendo UI themes" (??!!)
My question is why should I (ré?)install a theme in order to export a PDF?
I have my existing project, that has already setup all the needed CSS, I don't need to break the existing display, why the article suggest me to install a theme ? Who does need a theme, installs a theme, I need just the PDF export.
So, my question is, would the PDF work without installing a theme?

Can I access documentation for previous versions of Kendo Angular UI?
For, example is the source for Angular Grid API | Kendo UI for Angular (telerik.com) available in a git repository with tags for different versions of the product?
I am working with kendo grid menu filter.
I want to search multiple text in filter menu. I have created multiple field object from string array. and first time filter is working fine.
but if we are saving this filter in save preference.
its not populating next time the way we entered.
i am stuck here can u plz give me solution for this.
This is regarding the screen reader issues that kendo-datepicker faces only on chrome.
the screen reader was able to read the whole date that has been selected in the date picker because we added a property called title.
Further tabbing to change day/month/year individually causes the screen reader to just read "selected" or "unselected" which doesn't make much sense.
Could you please suggest a resolution for this one?

Dear Supporter,
i tried to use the
@progress/kendo-angular-gauges@4.1.0
in combination with the bootrap theme version
@progress/kendo-theme-bootstrap: 4.36.0
According to your documents, the GaugesModule supportes the theming versions >4.19.
Unfortunately the gauge don´t get colorized, so that it is invisible.
I prepared a StackBlitz demo where you can check its behaviour (stackblitz demo).
If i use the css stylesheet link in the index.html
<link rel="stylesheet" href="https://unpkg.com/@progress/kendo-theme-bootstrap@4.36.0/dist/all.css"/>the gauges are visible.
If i use all.scss
@import "~@progress/kendo-theme-bootstrap/scss/all.scss";
in the styles.scss instead of the link, the gauges dissapear.
I am looking forward to get the gauges working with the theme version 4.36.0 and the .scss stylesheets.
Thank you in advance.
best regards