Exemple #1
0
 def insert_field(cls, index, field_name, field_type):
     super(TableModelBase, cls).insert_field(index, field_name, field_type)
     # There could have been changes to field_type in ComplexModel so we
     # should not use field_type directly from above
     add_column(cls, field_name, cls._type_info[field_name])
Exemple #2
0
 def insert_field(cls, index, field_name, field_type):
     super(TableModelBase, cls).insert_field(index, field_name, field_type)
     # There could have been changes to field_type in ComplexModel so we
     # should not use field_type directly from above
     add_column(cls, field_name, cls._type_info[field_name])
Exemple #3
0
 def insert_field(cls, index, field_name, field_type):
     super(TableModelBase, cls).insert_field(index, field_name, field_type)
     add_column(cls, field_name, field_type)
Exemple #4
0
 def append_field(cls, field_name, field_type):
     super(TableModelBase, cls).append_field(field_name, field_type)
     add_column(cls, field_name, field_type)
Exemple #5
0
 def insert_field(cls, index, field_name, field_type):
     super(TableModelBase, cls).insert_field(index, field_name, field_type)
     add_column(cls, field_name, field_type)
Exemple #6
0
 def append_field(cls, field_name, field_type):
     super(TableModelBase, cls).append_field(field_name, field_type)
     add_column(cls, field_name, field_type)