I use radzen blazor studio and it generated a bunch of CRUD pages. Crud pages show properties of my models as its Property.Name, but i want it to show Property.DisplayAttribute.Name
[Display(Name = "The name")]
public string NotTheName {get;set;}
i started looking for something like this
services.AddRadzen(options =>
options.MakeRadzenComponentsShowDisplayAttributeName = true);
but i didnt find the global state implementation.
I really dont want to waste my time manually changing all CRUD pages, which leads me to the question - will there ever be a global state, being able to modify the config of Radzen?