Skip to main content
Nintex Community Menu Bar
Solved

change add new row position

  • July 12, 2023
  • 2 replies
  • 96 views

Akhanjer
Forum|alt.badge.img+5

Hello,

how I can change the position of the new row on the top instead of down.

 

Best answer by NicS

Out of the box this is not possible. You could probably do it with JavaScript.

I would recommend that you add an Add New Row toolbar button to the top of the list view and show a new row when it is clicked. Disable the Enable Add new row link button from the Settings 

 

 

2 replies

Forum|alt.badge.img+7
  • Nintex Employee
  • Answer
  • July 17, 2023

Out of the box this is not possible. You could probably do it with JavaScript.

I would recommend that you add an Add New Row toolbar button to the top of the list view and show a new row when it is clicked. Disable the Enable Add new row link button from the Settings 

 

 


Forum|alt.badge.img+9
  • Rookie
  • August 21, 2023

Chuck this in a data label on your list view.  It’ll look strange though as the new row is the same colour as the first datarow.


var actionRow = $('tr.action-row');

var tableGrid = $('.grid-content-table tbody');

actionRow.detach();

tableGrid.prepend(actionRow);

Cheers