For the user, to add row, in the grid, there is a row on the bottom, marked with *.
Is there a way to move this row upper, so that it will be just below the rows that are already in the grid?
Hello drpoalim,
You can have the AddNewRow at the top of the grid either by using the grid’s designer or in code.
In the UltraGrid Designer, click the ‘Feature Picker’ node and then expand the ‘Updating’ node. When the ‘Allow Row Adding’ node expanded select the ‘Allow – at top of grid’ option.In code, you should select the TemplateOnTop option from the AllowAddNew enumeration.
this.ultraGrid1.DisplayLayout.Override.AllowAddNew = AllowAddNew.TemplateOnTop;