Hi,
I have couple of questions related to grid. Can you please help?
Regards,
Parag

Hi,
I need to change to color and shape of points/items in the kendo react scatter chart. The default is circles with different colors but i need to change it to shapes of diamond, square, circle and plus.
Can anyone please provide help in this regard.
Thanks

Hi,
I have couple of general questions for Grid
1) Is it possible to set the width in Percentage to Grid cell? I tried below but it is not working
<GridColumn title="Last Name" cell={lastNameCell} width="50%"/>
2) Onchange : I have created custom cell inside the grid (for example lastNameCell which of type control input Html) and onchange of input I have return following code 1. In the below code whenever I start typing it invokes grid itemchange event, however with itemchange event I also want to invoke other function which I received from other component
Code 1
onChange = (event) => {
this.props.onChange({
dataItem: this.props.dataItem,
field: "FullName",
syntheticEvent: event.syntheticEvent,
value: event.target.value
});
this.setState({
data: this.filterData(event.target.value),
value: event.target.value
});
}
For example : My first component is receiving the function from other component, therefore whenever I start editing the controls onchange invokes the function return in other component. later in first component I have added Grid with custom input control, therefore whenever I start editing the control inside the grid it should invoke the grid itemchange as well as the function which I am receiving from other component.
3) For paging, in the example mentioned at below link, if I removed all the records from input js file, the grid still displays the forwarding arrow in enable state. is there any way to disable this? Attached is the screenshot for same
https://stackblitz.com/run/?file=app%2Fwith-state.js
Regards,
Parag

.k-detail-row.k-hierarchy-cell { display: none !important;}
Hi,
Is it possible to set bottomView and topView properties of Calendar in React / DateInputs / DatePicker?

Hi!
I've noticed that kendo charts still don't support quarter as a base unit. I have found some old topics from 2012-2013 related to Kendo for jQuery where you suggested setting up base unit to 'months' with a step of 3. Is there a better workaround now? Or has this feature been implemented in some other form?

In the link here: https://www.telerik.com/blogs/how-to-get-the-best-grid-performance
The following is suggested under the "Use Editors or Widgets in Cells Wisely" section:
"At this point we decide to prevent the rebinding of the Grid after each change by removing the two-way binding and by changing the dataItem values manually (changing the properties without using the “set” method and setting the dirty property to true). Great, now we can edit multiple records without re-rendering the Grid"
This obviously refers to the Jquery Kendo Grid.
How would one achieve the same thing using the React Wrapper?
