Hi,
I have a simple problem with a GridCalculatedColumn where i want to display the concatenation of a string and a int .
I dont have to filter or anything on it. I just need so text before the int value.
<telerik:GridCalculatedColumn UniqueName=
"c1"
DataFields=
"myString, myInt"
DataType=
"System.String"
Expression=
"{0}{1}"
></telerik:GridCalculatedColumn>
myString And myInt are from a linq data source.
I have try the : Expression="{0}Convert({1},'System.String')"
If you have any idea on how to do that without having to use databinding event or a Template Item.