I know I need to define a specific style in package.json using:
"@progress/kendo-theme-default": "^6.3.0"
But I like to know if it is possible to target a specific style for a component. So (I realize this is maybe a weird question), component X uses the material theme and component Y the Bootstrap theme.
I am using your NotificationService in an NgRx effect by the way. So I would also be curious if this would be possible.
toast$ = createEffect(() =>
this.actions$.pipe(
ofType(CoreActions.Toast),
filter(({message}) => !!message),
tap(({message, messageType}) => {
this.currentNotification?.hide();
this.currentNotification = this.notificationService.show({
content: message,
hideAfter: 5000,
position: {horizontal: 'right', vertical: 'top'},
//animation: {type: 'fade', duration: 400}, //NOTE: Adding an animation unfortunately causes the toast to stack very shortly when using the 'hide()' function..
type: {style: messageType, icon: true},
closable: false //NOTE: If true the 'hideAfter' property is ignored
});
})
),
{dispatch: false} // Because only an action is done, we should not redispatch (that would cause an infinite dispatch loop of toasts)
);I want to give my users the ability to reorder / resize the tiles and the layout, save that as a view, set a default view and then have the option to choose any saved view in the future that auto loads that grid layout.

I thought this would be an easy out of the box, but I was looking to have one detail open at a time. How would I achieved that
thanks in advance

Hi, if we are using Kendo Chart (Angular I believe) on a new project and i need the developers to replicate the example wireframe column chart below.
I have been advised that they can't get the column totals to appear at the top of the columns. Is this possible and if so what do they need to do to get the column totals at the top of the columns using angular?
Any help would be appreciated.
Regards
Alan

Hi,
I have a service with a http request to an api that returns a Observable<Pendentes[]>.
I need to call the service in my component, but I can't get the pagination working.
I attached some prints of my code.
Best regards,
Pedro Marquinhos
Hello,
I'm using kendo-upload for uploading files and displaying progress by subscribing to the uploadProgress event.
When [chunkable]="false" it seems that the event is fired every second or less, allowing the developer to show the progress smoothly.
The above is not true when [chunkable] is set to some value, the event is fired only when every next chunk is uploaded. Consider the following settings: [chunkable] = "{ size: 1048576} and file size to upload is 10Mb, in this case, only 10 events are going to be fired with event.percentComplete = 10, 20, 30 .... 100. This prevents me from building a progress indicator that works smoothly enough. Any ideas about getting uploadProgress fired during the chunk upload more often than once at the end?
Hi
I have simple page
I see in a browser this:
But in exported PNG file, there is no background and there is default font instead of specified in css:
i created also a div with paragraph and it works fine.
I attached example app with issue reproduction.
--
Best regards
Kamil Paszkiewicz
