Hello,
I'm using RadGridView.I need to format the cells of grid like "###,###".Moreover as long as my ItemSource is totally arbitrary, I can not define the columns in xaml or code. However, I know the first column is of string type and the rest are double
I need something like :
public void radGridView1_Loading(e) // or formatting{ if(e.ColumnIndex>1) e.Cell.Format = "###,###";}
Thanks in advance