Skip to main content
Nintex Community Menu Bar
Question

UpdateRow() not updating Picklist Value

  • July 10, 2024
  • 2 replies
  • 28 views

Forum|alt.badge.img+9

I’m trying to update a rows picklist value using a snippet. Here is my loop $.each( SalesOrderLineItemsSelect.data,function() { var updateRow = SalesOrderLineItemsSelect.updateRow(this,‘Status__c’, ‘Invoiced’); }); (There is other stuff in the loop, but that’s working correctly so I removed it ) This loop runs and it updated the “Status__c” field correctly when I do a skuid.model.map().SalesOrderLineItemsSelect.GetRows(). But, when I save it, the field isn’t updated. I’ve put another text field in the updateRow var to see if it would update properly and it did, but for some reason this picklist will not update. Any idea what could be causing this?

This topic has been closed for replies.

2 replies

Forum|alt.badge.img+18

Does the user have permission to edit the field?


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

I figured it out… I had a process running that kept changing it back to shipped… smh