You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add support for applying same decorator to multiple properties in the same model with single command. If the properties are of same type I can use one single command to apply same decorator to multiple properties within the same model.
Use Case
I want to add FieldsExplorerHide decorator to status, side, buyers etc in the same model with single command instead of adding multiple commands?
Ex: {
"$class" : "org.accordproject.decoratorcommands.Command",
"type" : "APPEND",
"target" : {
"$class" : "org.accordproject.decoratorcommands.CommandTarget",
"namespace" : "[email protected]",
"declaration" : "ReTransaction",
"property" : " buyers,sellers" ---> which are arrays here and want to hide them in fieldsexplorer
},
"decorator" : {
"$class" : "concerto.metamodel.Decorator",
"name" : "FieldsExplorerHide",
"arguments" : []
}
},
Possible Solution
Accept an array or comma separated strings for "property" element in the target element
Context
Detailed Description
The text was updated successfully, but these errors were encountered:
Feature Request 🛍️
Add support for applying same decorator to multiple properties in the same model with single command. If the properties are of same type I can use one single command to apply same decorator to multiple properties within the same model.
Use Case
I want to add FieldsExplorerHide decorator to status, side, buyers etc in the same model with single command instead of adding multiple commands?
Ex: {
"$class" : "org.accordproject.decoratorcommands.Command",
"type" : "APPEND",
"target" : {
"$class" : "org.accordproject.decoratorcommands.CommandTarget",
"namespace" : "[email protected]",
"declaration" : "ReTransaction",
"property" : " buyers,sellers" ---> which are arrays here and want to hide them in fieldsexplorer
},
"decorator" : {
"$class" : "concerto.metamodel.Decorator",
"name" : "FieldsExplorerHide",
"arguments" : []
}
},
Possible Solution
Accept an array or comma separated strings for "property" element in the target element
Context
Detailed Description
The text was updated successfully, but these errors were encountered: