could you please answer the question from SO here https://stackoverflow.com/questions/76809963/check-kendo-spreadsheet-for-validation-errors
Using a (ASP.NET Core) Kendo spreadsheet, how to know if on the sheet are or not validation errors and what kind of if any.
I used this code to add validation
myCell.Validation(v => v
.ComparerType("custom")
.DataType("custom")
.From("R[0]C[0] > 0")
.Type("warning")
.ShowButton(true)
.AllowNulls(true)
.TitleTemplate("Alerte de validation")
.MessageTemplate("Attention, cette valeur est négative !"));