Skip to main content
Nintex Community Menu Bar
Question

Update lookup field on row to null via row action

  • July 10, 2024
  • 3 replies
  • 9 views

Forum|alt.badge.img+3

I’m trying to null out a lookup field on row using a row action but it’s not working. Any ideas?




This topic has been closed for replies.

3 replies

Forum|alt.badge.img+10

Will…I am not sure why your row action ‘as-is’ does not work. I was able to do this declaratively by creating a second model that I do not load on page load nor create a new row for. This is an empty model (you’ll see Skuid reference this as a ‘proto’ model). I selected the Id field that I want to update (in my case AccountId). In my row action I set the value of the lookup field to the Id from my ‘empty’ model. Since I have not loaded any data into the model, this Id field is empty/null. It does clear the lookup field. Here are some screen shots.



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

Pat Vachon has also pioneered a solution here.  Create a UI only field called “Blank”  its default value should be blank.  Then pass the value of this field into your lookup field in your action framework step.   

https://community.skuid.com/t/cannot-empty-the-value-of-a-lookup-through-the-action-fr…


Forum|alt.badge.img+10

Nice!  Thanks!