Hi ,
i am using a ultra win grid for showing the data.
my qusetion is i want to add a row to the top of the win grid
could you pplease help me regarding this issue
Thanks & Regards
Here is how you can add a new row to the top of the WinGrid: In the InitializeLayout event set the AllowAddNew property in the Override section of DisplayLayout to TemplateOnTop like so:
e.Layout.Override.AllowAddNew =
.TemplateOnTop;
You can also set its BackColor if you like so that it will stand out from the other rows like so:
e.Layout.Override.TemplateAddRowCellAppearance.BackColor =
Color.DodgerBlue;
That should do it. I hope that works for you.
Michael S.