In WebDataGrid dynamic data binding, how to fix some of the columns and on which event we need to write the code.
Provide with code sample will be very helpfull.
Thanks,
Arun
Hello,
I am following up to see if you were able to fix columns based on the information I have provided above.
Let me know if you need any further assistance with this matter.
It is possible to fix columns using below lines of code:
this.WebDataGrid1.Behaviors.ColumnFixing.FixedColumns.Add("NumCol", FixLocation.Left);
You can fix columns in page load event or other events (like button click) based on your business requirement. Review the forum thread below that will give you mark up and code:
<https://es.infragistics.com/community/forums/f/ultimate-ui-for-asp-net/60180/freeze-column-and-outofmemoryexception/305967#305967>
Hope this helps.