I would like to change the 'TextProperty' of a 'RadzenCheckBoxList' to display the content in uppercase. Could you please tell me how to write the expression?
original: TextProperty="ShowName"
this one did not work: TextProperty="ShowName.ToUpper()"
What about more complex operations? Such as splitting by underscores and capitalizing the first letter of each word, How can I do it?
abc_def_ghi -> Abc Def Ghi