RadzenCheckBoxList TextProperty Expression

Hi,

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()"

Thank you.

TextProperty is a name of a property not expression. You can easily use CSS to display it uppercase:

Hi @enchev

Thank you for providing the solution.

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

Thank you

You can add additional property to your model that will do everything needed in the property getter.

1 Like