Hi and happy new year!
I would like to use the Scheduler like a kind of school calendar, where the calendar items are not bound to a specific date but to a time on a week day. So for example on every Monday from 10:00 to 11:00 am there is for example math, from 11 to 12 there is biology, and so on, meaning the same item at the same time and day but independent of the date. Is this possible and if so, do you have an example for this?
The
Below are the versions which I am using, it's working perfectly in local but this error I am receiving in the browser console after being deployed.
"@progress/kendo-react-pdf": "4.13.0","react": "^17.0.2",
}
How can I change date format of the DatePicker in grid filter cell?
I want the placeholder as "day/month/year" and date as "dd/MM/yyyy".
Hi, I have a problem handling all the mention in the title you can take a look at this stackblitz that I modify from the selection docs
https://stackblitz.com/edit/react-wacgk5?file=app%2Fmain.jsx
the problems are:
1. when filtering the product name field and then removing the filter the total items of the grid became only 10 ( should be 77 ).
2. when changing the page the total items also became 10 and only 1 page remained to select.
what I'm doing wrong or there is a better way to handle this?
I needs to create the inner grid inside the details grid. For example, usually we have master grid detail grid. Here I needs to create one more detail grid inside the details grid in each row. Do we have option to create this multi-level grid.
Hi
I'm looking for a way to generate a PDF from React code server side. The library complains about the missing window object, wich is as expected in an browserless environment. Can I pass any options so it won't need window to translate html elements to groups?
import { Handler } from '@netlify/functions'
import { parseHTML } from 'linkedom'
import { drawDOM, exportPDF } from "@progress/kendo-drawing"
export const handler: Handler = async (event, context) => {
var test = await getBase64()
return {
statusCode: 200,
body: JSON.stringify({
message: `Error: ${test}!`,
}),
}
}
export async function getBase64(): Promise<string> {
try {
const { window, document } = parseHTML("<p>test</p>");
let group = await drawDOM(document.body, { paperSize: "A4" })
let dataUri = await exportPDF(group)
return dataUri.split(";base64,")[1]
} catch (ex) {
return ex
}
KendoReact Grid - When specifying filter = "numeric", the grid column filter will be numeric textbox (accepting only number and have step up/down)
We have a requirement that the lower bound of this filter input cannot be negative value.
1. is there a way to configure Grid or Column to limit this numeric filter ?
2. I think I should be able to prepare a custom component (use filterCell) for this filter (need to specify min/ max attribute). However, I am not sure how to include the numeric filter operation options?
Note - The thing that I am looking for is the output that Martin prepared in ( https://stackblitz.com/edit/angular-gwuwre?file=app/app.component.ts ) for question in Angular forum ( https://www.telerik.com/forums/limiting-numeric-filter-row-column-values )
Thanks,
SmCoup