Hi,
I want to make one row of my gird readonly & fixed ,whereas other new rows can be added by the user through the AddNewRow button but the fixed row is not affected by the editing. It may remain on top of the grid or at the bottom of the grid just like the summaries row is fixed at the bottom of the grid.
The values of the row may change on some event for example ComboSelectionChanged event would cause the values in that fixed row of gird to be changed but that would be done programmatically & not by the user directly.
In simpler words I want to do the following:
1) Fix(freeze) one ReadOnly row of the grid at the top or bottom of the grid (On grid's initialization the grid is empty therefore there would be only 1 fixed row in the grid)
2) Programmatically change contents of the fixed/readonly row on some other event.
3) New rows can be added by the user, but the fixed row will remain at its place.
There is a feature of ColumnFixing in the API Refernce, but I want to fix a particular row (all its columns) while other new rows are not fixed).
How could I do that ? Any help would be appreciated. A short sample would help. Thanks.
Hello zep,
Thank you for your feedback.
If you need further assistance regarding this matter, feel free to contact me.
Regards,
Tsanna
I have not yet implemented your suggestion because of too much workload. I will let you know when I try it. Thanks for your help.
Have you been able to resolve the issue? Did my suggestion help you?
If you need further assistance, feel free to contact me.
As a temporary solution, I can suggest you to add new row to the grid headers table and customize it to look like the other rows in the data table. This will ensure that the row will be fixed, however there is no guarantee that it will work in all scenarios. I'm attaching a sample for your reference.
Please let me know if I can provide further assistance.
Is there a javascript tweak through which I can place the row on top or bottom of the grid? any workaround for the time being.