So here i am after 3 days of struggling with kendo excel sheet, i have this use case that i want to apply.
I have data that i am showing on kendo spreadsheet. there is the one column under the name values and other columns are disabled, that values column can be changed and applied at the same time in another column right by its side that is also disabled.
Also the change in the value column and the new data that has been now modified with the new values in the excel i want it to be saved with me so i can use it.
is it possible in kendoReact spreadsheet ?
if yes, than can any one explain it step wise to me with proper basic code example of the kendoReact spreadsheet that will be great and appreciated. Also i am working on react.
Thanks
Hi, naveed,
Based on the provided description I understand that you wish to edit values in one specific column, see these changes reflected instantly in another disabled column next to it, and have the ability to save these updated values for later use, is that correct?
If this is the case, this will require implementing custom logic that will update the disabled cell value, you can use the onChange event to detect when a change has been triggered. As for saving values, I can recommend storing them in localStorage and retrieving them later:
https://stackabuse.com/storing-to-localstorage-in-react/
Regards,
Filip