I want to freeze one specific column in an ASP .net WebForm GridView.
How can I do it. I prefer jQuery. I've already tried these links :
I want to freeze one specific column in an ASP .net WebForm GridView.
How can I do it. I prefer jQuery. I've already tried these links :
I think you need to make a column readonly(freeze) if it is so write the below code
((BoundField)gridView1.Columns[columnIndex]).ReadOnly = true;