Hiii, I'm using Kendo Grid to populate datas from api. And in my case i have a field called Active in my kendo column which has value Y/N. So my problem is i need to conditionally display the values like if the value is Y it should show Yes in my column and if its N it should show No.
Hi All,
In my kendo react grid i am doing in inline edit. When i click row edit button row colum converting to edit mode and showing two button save and discard. if i click save it will save to database. If i click discard i want to display old value(if i typed anything) in grid. How can i achieve this?
Hi,
In my application i am listing personal data in kendo grid with edit and delete feature each and every row. Here my requirment is if age > 50 i don't want to show delete
button in that row. How can achieve this with react Js?
Hi,
i am rendering 20 components with .map inside App.js (using React) and these 20 components do have something like this:
render() {
var item = this.props.item
var brand =this.props.brand
var adminUrl = clientConfig.brands[brand].admin
var chargeData = JSON.parse(item.chargedata)
var { description,source,amount,outcome } = chargeData
var { last4, country,cvc_check,exp_month,exp_year} = source
var { risk_level } = outcome
return (
<
div
>
{
this.state.json1 &&
<
Window
title={"All Details"} onClose={()=>{this.setState({json1:false})}} initialHeight={800} initialWidth={800}>
<
ReactJson
src={item} />
</
Window
>
}
{
this.state.json2 &&
<
Window
title={"Charge Object"} onClose={()=>{this.setState({json2:false})}} initialHeight={800} initialWidth={800}>
<
ReactJson
src={chargeData} />
</
Window
>
}
I do have a button which tiggers the json1 to true. Imagine i have scrolled several pages down and at the component number 8, to be at 8, the browser has scrolled like 3 pages down. I press Show button and it shows the window but NOT at the 3rd page but it is way top, it is on the first page of the browser.
I need the windows position relative to the wrapper i am using. What do i do wrong?
In IE11 Kendo Grid Render of average amount of data could take up to 10s or even more. This issue is a blocker for our project.
There is a demo with simple table with 500 rows and 24 columns, please see attachment kendo-grid-demo.zip
Please comment upon this ticket. It would be great to know when this ticket will be fixed.
Br,
Iurii
Hi,
How can I add a calendar icon like that of the simple DatePicker (attachment) into the DateRangePicker please?
Thanks,
Lara
Hi there,
I want to have a newline in exported data from grid to excel. How can I do that? I tried using char(10), but it didn't work.
Also, can I have some sort of html in the cells? I know that the documentation says that I can't, but still? :)
Hi,
I'm in the middle of refactoring our current KendoUI/Js code base to KendoReact/TypeScript/Create React App. I try to use the KendoReact grid and am struggling with the expand and collapse feature; the little arrows which are available after you group a column.
The issue is that, as far as i understand the demo, expand works by modifying the actual data used in the grid by adding a "expanded" column. Then this updated dataset is stored in the state itself. Which is a defintely a no go area for me as I use React hooks to use my overall data.
Are there alternatives to this approach? If not, is it on the roadmap? It's quite some work and a lot of code for getting features which are available in Kendo UI by just setting a switch (example: sortable).
Regards,
Ruud