Skip to main content
Nintex Community Menu Bar
Question

Update a field on context row

  • July 10, 2024
  • 2 replies
  • 3 views

Forum|alt.badge.img+2

I am trying to update a field on context row but it is not getting saved to database. var seq = recordrow.Sequence__c-1; var rowsToUpdate = {}; model.updateRow(recordrow, ‘Sequence’, seq); model.save(); Any thoughts?

This topic has been closed for replies.

2 replies

Forum|alt.badge.img+1
  • July 10, 2024

Could you please provide me more information please ?


Forum|alt.badge.img+3

I think it should be 

model.updateRow(recordrow, {‘Sequence__c’: seq}); 


maybe there are other Problems as well

Greetings