In WebOrder, go to Inventory.wo and make the following changes (around line 46):

Code:
        Use cWebParentCombo.pkg
        
        Object oVendorID is a cWebParentCombo // cWebForm
            Entry_Item Vendor.ID
            Set piColumnSpan to 4
            Set piColumnIndex to 0
            Set psLabel to "Vendor ID:"
            Set peLabelAlign to alignRight
        End_Object
        
        Object oVendorName is a cWebParentCombo // cWebForm
            Entry_Item Vendor.Name
            Set piColumnSpan to 6
            Set piColumnIndex to 4
            Set psLabel to "Vendor Name:"
            Set peLabelAlign to alignRight
        End_Object
This should work, right?

Comple and run. Open the Inventory Maintenance view.

Try to pick a Vendor using the Vendor ID combo. The drop-down list works OK but it does not update the form(s).

Or just scroll through Inventory records - the Vendor ID combo does not seem to show its data.

Tested in Chrome, Edge & Firefox.

What is up?

Mike