...
Code Block | ||
---|---|---|
| ||
dynamicMdms : { uiFramework: "custom-containers", componentPath: "DynamicMdmsContainer", props: { dropdownFields: [ { key : 'tradeCategory' }, { key : 'tradeType' }, { key : 'tradeSubType', callBack: tradeSubTypeChange, // Optional isDisabled: false , // Optional fieldType : "autosuggest" // Optional } ], moduleName: "TradeLicense", masterName: "TradeType", rootBlockSub : 'tradeUnits', type : 'TL', callBackEdit: updateMdmsDropDowns, isDependency : "DynamicMdms.common-masters.structureTypes.structureSubType" } } |
isDependency
mean - The MDMS api will trigger and save in to redux when the dependency path got value .
callBackEdit
mean - It’s for Edit functionality and it will call only for Edit action .
The “dropdownFields” Values are the main picture to manage number of dynamic drop down’s .
...