Hi,
If a grid with column menu is placed inside of a dialog. Column menu is rendered behind the dialog https://stackblitz.com/edit/react-8m7hc . We had a similar z-index problem also with tooltips.
Hi,
How to open split button items list on onButtonClick.
I want to be able to see the list of the click of the button in the highlighted portion in the below attachment
Hi,
i am using latest React.
inside render():
<Sparkline data={this.state.sparklineData} />
and do update the state via
this.setState({sparklineData:sparkData})
All components do update except Sparkline. I have tried many things like this.forceUpdate(). Also debugged the this.state.sparklineData inside render(). The setState does the work and re-renders and the data comes through. console.log(this.state.sparklineData) proves it.
But the component simply doesnot re-render. I have put a default value into sparklineData which is:
this.state = {
sparklineData: [1,0,1,0,0,1,1,0,1,0,0,1,1,0,1,0,0,1,1,0,1,0,0,1,1,0,1,0,0,1,1,0,1,0,0,1,1,0,1,0,0,1,1,0,1,0,0,1,1,0,1,0,0,1],
}
and this WILL be rendered. After that no updates. Please help
Hi
I stared resizing grid from right to left. I can see some extra space on right side of the grid is that the expected behavior or is there any way to overcome that. Please find the screen shot for more details.
https://stackblitz.com/edit/react-nqnuzr?file=app/main.jsx
While fetching api data using axios get method, it returns an error showing statuscode 415(Unsupported Media Type).I'm getting the expected result in postman.
In this axios request i'm passing headers aswell as body. I dont know why this error happens.
The code somewhat looks like this.
axios
.get(URL,{
username:"Binu",
headers:{
'Content-Type': 'application/json;'
}
})
I am trying to customize a few things in the Date Range Picker component namely the font, highlight colour, box shadow, etc.
I was trying to do this by customizing a theme and following the steps at https://www.telerik.com/kendo-react-ui/components/styling/theme-builder/. I copied the downloaded all.css file into the project and imported it in the .js file which we are defining the DateRangePicker component. However, I don't seem to see any differences being applied to the styling (specifically, the colours remained the same). Moreover, if I manually edit the css file in VS are the changes applied to the styling?
Trying to create a form with preview of what should be exported as pdf. Great tools, but I have an issue:
Adding the special characters "åäö" will render fine i the react component <Preview /> but not show in the pdf. I think they are replaced with whitespaces as of now. This code is part of the React component:
<PDFExport
paperSize={"a4"}
fileName="sample.pdf"
title=""
subject=""
keywords=""
ref={r => (toBeExportedAsPdf = r)}
>
<Preview
props={this.state.someString}
/>
</PDFExport>
Is there a fix for this avaliable? Thanks!
Let's say a user is looking at page 2 after applying a filter on one of the columns.
Please refer to Capture.jpg.
Now, if the user changes filtering text, I want the grid to display page 1, instead of staying on page 2.
How can I achieve this?
Thank you.
Does your React components support creating cross platform desktop apps, example: https://github.com/electron-userland/electron-builder
Using Electron Builder?