I am losing underline and strikethrough when I change font size, foreColor or backColor. I am changing the default font and font size in onMount.
const styles = `p {font-family: EYInterstate; font-size: 14px;}`;
const onMount = (event) => {
const iframeDocument = event.dom.ownerDocument;
const style = iframeDocument.createElement('style');
style.appendChild(iframeDocument.createTextNode(styles));
iframeDocument.head.appendChild(style);
};
Not sure if that is causing this. Any ideas?
when I use the align buttons the spaces in my text is getting removed. I'm not sure why. I have changed the default font in onMount. I don't think that should matter.
before
after
i am logging and saving the text with onChange and it seems to be missing the last character.
any idea what I'm doing wrong?
<DropDownList
style={{ height: "30px" }}
defaultValue="Select unit..."
textField='name'
value={unitsPressureSelected}
dataItemKey='id'
onChange={(e) => {
console.log("here")
setUnitsPressureSelected(e.target.value);
}}
data={unitsPressure}
/>
Hello! I'm trying to implement the following dropdown but the default value is not visible and I don't understand what's wrong. Could you give me a hint? Thanks!
Rebeca.
Hi,
I tried to set my footer cell as fully colspanned but it didn't go well.
'
This is what I expected :
Anyone can help about this?
Thanks
Hello,
This is a generic question. We use Kendo React for Export PDF functionality. We use Redux for state management.
On clicking of Export we make bunch of API calls and export all the React components into PDF.
The size of PDF is around 1.2MB
The problem we are facing is, the PDF is downloading perfectly alright in Firefox browser. It is taking around 90-120 seconds for PDF to download.
But we are facing issue in Chromium browsers(Google Chrome and Edge). The PDF is taking around 20 minutes and it is crashing application sometimes.
I cannot create stackblitz sample for this as it would be hard replicating all the things that are happening in background.
I know this is very little information. But can someone clarify if Kendo behaves differently in Different browsers
Thanks and Regards,
Krishna
Hi, I am using filterBy from @progress/kendo-data-query to allow filtering of the data displayed in my kendo-react-grid. For more intuitive UI, i'd like to change the icon for this from a filter to a search magnifying glass. Is this possible? I saw some other Q/As related to this but they all suggested editing the css.... my file uses makeStyles instead for styling so I wasn't sure how to proceed. Let me know if you have suggestions for how to do this.