In my case, I’m customizing SO301000 and enabling the import button on the Detail grid with the following:
@gridConfig({
actionsConfig: {
import: {hidden: false},
}
})But, this seems to replace the settings that the base screen is using including:
syncPosition: trueHow to I merge my configuration instead of replacing the existing gridConfig settings?
