This question is locked. New answers and comments are not allowed.
Hi Telerik
i have a issue as below:
i have 3 columns
1 - price
2 - amount
3 - price * amount
and a class as below:
public class Sale
{
public double price
{
get;
set;
}
public double amount
{
get;
set;
}
}
and I init data for RadGridVIew from ObservableCollection<Sale>()
RadGridView displayed 2 columns: price,amount, however, i want to display 3th column, with header = "total" and this column = price * amount.
i have to how to display as i want
RadGridView displayed as below:
price amount
240 10
100 20
__________________________
I want in RadGridView as below:
price amount total
240 10 2400$
100 20 2000$
thanks and regards