Hello,
I need to set some columns fixed programmatically. For that I have tried IsFixed property in following way but it is not working.
grd1.ItemsSource = data;
(grd1.Columns[0] as Column).IsFixable = true;
(grd1.Columns[0] as Column).IsFixed = FixedState.Left;
I am using IsFixed property immediately after data binding. Should I use any specific events to use it?
Thanks,
HBA
Hi,
I tested your code and it's working fine for me. What's the issue you're facing ? Do you get an exception of some kind ?
Regards,