...
There’s only a single flexible view in the Items tab. The default view looks similar to Tree View. To achieve the Table View like layout, consider using hideSiderPanel
or defaultPlacement
parameters of the Items tab. More in https://pricefx.atlassian.net/wiki/spaces/KB/pages/3980492805/ Detail + Page + Layout + and + Dynamic +Tabs#Widget-ParametersTabs.
You need to manually set up the preferences for the Items table. Ember preferences are not used in React for Items table. In React QuoteEditor_TableTreeView
and similarly named preferences are used, in Ember it’s either QuoteEditor_Overview
or QuoteEditor_TableView
.
...
api.currentItem() returns a temporary object in “Autosave off” mode.
Be careful with api.find(), you may need to compose and use the “real” typedId instead of the typedId of the temporary data.
In “Autosave off” mode, the line items also have a different type code: QLITMP instead of QLI.
...
The interceptors used in Ember and React are not compatibleincompatible. In React, the interceptors have been greatly improved. They can be written by configuration engineers and there is no need to redeploy the application if the new code exists. If you use interceptors in Ember, please contact CSM to coordinate interceptors migration to React.
Documention for the interceptors used in React:
...
The next possible reasons for such loops is the input value that is changing every time when the configurator logic is executed, like showing a current timestamp. You either need to make it HIDDEN
or remove it.
Related docs
...