web/formfields.py
changeset 4226 67dd296f864d
parent 4225 c49bb6e3d343
child 4227 39f01be4a6c5
equal deleted inserted replaced
4225:c49bb6e3d343 4226:67dd296f864d
   820         for eid in values:
   820         for eid in values:
   821             if not eid: # AutoCompletionWidget XXX deal with this in the widget
   821             if not eid: # AutoCompletionWidget XXX deal with this in the widget
   822                 continue
   822                 continue
   823             typed_eid = form.actual_eid(eid)
   823             typed_eid = form.actual_eid(eid)
   824             if typed_eid is None:
   824             if typed_eid is None:
   825                 form._cw.data['pendingfields'].append( (form, self) )
   825                 form._cw.data['pendingfields'].add( (form, self) )
   826                 return None
   826                 return None
   827             eids.add(typed_eid)
   827             eids.add(typed_eid)
   828         return eids
   828         return eids
   829 
   829 
   830 
   830