Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
3550
Move add row
posted

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? 

Parents
No Data
Reply
  • 1980
    Offline posted

    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;

Children
No Data