Row-update does not update interface

I am customizing the Part form, I have an event that should remove custom attributes on ProdCode change. It’s firing, and on save the fields are blank, but the interface is not updating. Thoughts?

In this example the Housing Type field should be empty after I switched the Product Group selection.

What are the settings for that combo box? Under Data, Reusable Combo, and Advanced.

1 Like

image

1 Like

That all looks right.

I set up a quick test: a new combo that calls UD16Svc (I don’t have anything in UD01) and bound to TransView.ComboTest, and a button that uses row-update to clear TransView.ComboTest

I make a selection in the combo, then hit the button and it clears as expected.

What you have should be working…

1 Like

Have you turned on Developer Tools and checked the dataviews? I would do that and see if something is not clearing like you think.

1 Like

Good point!
Ctrl + Alt + v with debug logging turned on to see what is currently in your data view

1 Like


What should I be expecting to see here? I can see that Part is dirty (red right?)

You want to expand this.

image

That will show you all of the records in the dataview. You also want to check any other dataviews that might be involved in the process. Is your UD table getting stored in a dataview? Are there any REST calls that still hold data? etc.

2 Likes

Instead of expanding that top object, expand Array…
There you should be able to see all the values in the data view:


@jkane beat me to it…

2 Likes