I have an upload functionality where user uploads excel sheet and backend api is expecting the result in JSON format of the entire data as input as shown below
[{
"LineNumber": "1",
"Parma": 123,
"PartNumber": 234,
"TestQual": "AQ",
"UOM": "LIT",
"TestCode": "RME",
"Weight1": 234,
"Weight2": 235,
"Weight3": 10,
"IsValid": true,
"ValidationMessage": "test"
}, {
"LineNumber": "2",
"Parma": 321,
"PartNumber": 455,
"TestQual": "AQ",
"UOM": "LIT",
"TestCode": "RME",
"Weight1": 290,
"Weight2": 200,
"Weight3": 20,
"IsValid": true,
"ValidationMessage": "test"
}]
Likewise if the excel has 100 records , we need JSON array with all the data.
I have checked for available options in Kendo but I could not find anything, help me with your ideas. Thank you.