1

I am using telerik library 2011.3.1220.40 in a Windows forms application. My purpose is to add data to a new column based on the data that is already loaded and bound to the view. Is there an event that is triggered after the data is bound? And I don't know why I cannot have access to Rows collection in such example: myGrid.Rows[3]

AymanKun
  • 241
  • 1
  • 4
  • 20
  • Can you please post some code of your setup. Also, what columns do you have, are the auto generated or you are adding them, what is the new column you add and how you would calculate its value? – checho Feb 03 '16 at 12:00
  • Actually I am working on a project of the company I m working with and there is no possibility of copy/pastr the code, however, the columns are not auto generated they are created in such way: in the view .xaml file, and the data is bound from the Model in the code behind . The column i want to add is created in the same way in the view except that the data i want must be calculated depending on the values of the other columns not from the Model. – AymanKun Feb 03 '16 at 12:16
  • Have you tried `DataBindingComplete` event for `RadGridView` control? This is fired after your grid view is data bound. – roemel Feb 04 '16 at 06:25
  • 1
    This event is not provided by telerik for WPF – AymanKun Feb 04 '16 at 10:32

1 Answers1

0

It seems you are using RadGridView for WPF, not WinForms. Here is an article regarding expression columns in Telerik UI for WPF: link

checho
  • 3,092
  • 3
  • 18
  • 30