Hi,
What changes have there with virtual fields in the last days (in
trunk)?
I can not run something that was working correctly.
this worked:
class ElementoIncidencia(object):
def altura_es_par(self):
return not bool(self.elementos_incidencia.altura % 2)
tb_elementos_incidencias.virtualfields.append(ElementoIncidencia())
Error:
...
TypeError: 'ElementoIncidencia' object is not callable
I also tried with:
tb_elementos_incidencias.virtualfields.append(ElementoIncidencia)
Error:
...
AttributeError: 'dictproxy' object has no attribute 'update'
Jose