Skip to main content
Nintex Community Menu Bar
Question

Display the row number in skuid table

  • July 11, 2024
  • 5 replies
  • 28 views

Forum|alt.badge.img+3

Is it possible to display the row number in the skuid table? 

This topic has been closed for replies.

5 replies

Forum|alt.badge.img+17
  • Nintex Employee
  • July 11, 2024

The merge syntax {{index}} gives the row number from the model.  Add a template to the table and use that merge syntax. 


Forum|alt.badge.img+9

You ought to document that! (Or maybe I missed it.)


Forum|alt.badge.img+3

Thank you!


Forum|alt.badge.img+4
  • July 11, 2024

Hi Rob,
this works beautifully, however is it possible to sort the rows in a descending order using this?


Forum|alt.badge.img+17
  • Nintex Employee
  • July 11, 2024

A little bit of magic would work here. Add a UI only formula field to your model with the formula:
{{$Model.<>.data.length}}-{{index}}.

That will give you the descending number which you can include as field in your page.