|
@@ -92,7 +92,8 @@ class Model(object):
|
92
|
92
|
# @param component_type str : a component type ( component_class, component_fieldgroup, component_field or component_type )
|
93
|
93
|
# @param datas dict : the options needed by the component creation
|
94
|
94
|
def create_component(self, component_type, datas):
|
95
|
|
- em_component = self.emclass_from_name(component_type).create(datas)
|
|
95
|
+ datas['uid'] = self.new_uid
|
|
96
|
+ em_component = self.emclass_from_name(component_type)(datas, self)
|
96
|
97
|
|
97
|
98
|
self._components['uids'][em_component.uid] = em_component
|
98
|
99
|
self._components[name_from_emclass(em_component.__class__)].append(em_component)
|