We have a page which loads a Scheduler, and we pass various information to define what data is loaded in. That all works fine, and we can click PDF Export and it exports absolutely as we'd expect.
We make fairly heavy use of the templates, so we could end up with something that looks like this:
There are about 200 different schedules that we might show depending on the data, and what we'd like to do is be able to automate the export.
We could write a script that loads the page and simulates a button click, however, if there is some better way, I'd MUCH rather do that so we're not dependent on waiting for the page to display on some computer somewhere.
I can pass the parameters needed in the URL - but not sure if there is some way on the page I can automate that PDF Export without first displaying the scheduler page.
Any help would be greatly appreciated!
Thanks

Hi,
On the roadmap page there is a "Dock Manager Component" listed, but I don't see any information on this anywhere.
Anyone have more information or an ETA on this?
Thanks
Christopher
Hello,
I'm trying sort by date my data, but is not working. I already tried a lot of approach but none work.
Expiration Date is a date
Expiration Date Format is a string, so don't give to sort.
Please help me, what is wrong?
Strange that in another site is working this approach.
my column defination for kendo grid
columns: [
{ field: "centreName", title: "Centre Name", width: "180px" },
{ field: "address", title: "Address", width: "188px", encoded: false },
{ field: "programme", title: "Programme", width: "180px", encoded: false },
{ field: "action", width: "180px", encoded: false }
],I don't want to print the column title for action
current output is


Hi, I recently created a grid with a multiselect filter and noticed that the selected values are not showing if the user selects more than one item and then filters. I could reproduce the behaviour in a short dojo script which comes from the telerik examples.
Is there any reason for this behaviour or did I forget something that makes the filter control fail? If this is a bug, is there a workaround?
In the example, the field that contains the filter is "Name" (2nd column).
<!DOCTYPE html>I have a Kendo grid Jquery component with field grouped and hidden. I would like to show a filter button based on this field. Could you help me ?
Thanks
Hi,
We're migrating from ASP.NET AJAX to Kendo UI for jQuery. We've been able to migrate most controls to widgets. However, we're having an issue with filtering. We're trying to replicate the filter template feature in RadGrid in the demo here https://demos.telerik.com/aspnet-ajax/grid/examples/functionality/filtering/filter-templates/defaultcs.aspx . We've looked at using the filter menu customization in this demo https://demos.telerik.com/kendo-ui/grid/filter-menu-customization . However, we want to use the filter in "row" mode, instead of a filter button / menu with the options in it. Our end users find it quite clunky and requires a few extra clicks which takes away from the user experience. Is there any options besides the filter menu in the mentioned demo?
Thanks
I am using dart sass to try to apply my custom colors, but it doesn't want to override the file per the documented instructions. In the first example, it does compile but the color isn't overridden in the file.
Using package sass v1.58.0
This doesn't override the primary color:
$primary: #4dcae6;
@import "~@progress/kendo-theme-default/dist/all.scss";Apparently you can use the @use statement with a `with ( ... )` and that's supposed to work, but if I do that, I get the error "This variable was not declared with !default in the @used module.". I'm stuck.
@use "@progress/kendo-theme-default/dist/all.scss" with (
$primary: #4dcae6
)