Would be great to have a user XML Editor, with input/output from string/stream and an attached XSD for continuous validation?
I realise this wouldn't be priority, just wondered if it could be put on roadmap at some point.
Many thanks,
David Speak.
Why dont try this free and open source blazor xml editor project?
https://github.com/Springwald/BlazorXmlEditor
This looks a lot like server-side functionality, because schema validation and actual read/write operations are in the domain of the application. Once you have the read, validate, write operations done (probably the built-in .NET classes will let you do that relatively easy - see here and here, and on validation - here), you can have a model for the data and show and edit it in a grid.
With that said, such a component falls out of the scope of our UI components and its implementation is rather unlikely.