Ticket #75 (new defect)

Opened 2 years ago

Last modified 2 years ago

Actions never called

Reported by: ColinAlston Assigned to: matt
Priority: highest Milestone:
Component: form-core Version:
Severity: blocker Keywords:
Cc:

Description

{{{ def form_someform(self, ctx):

form = formal.Form() form.addField('name', formal.String()) form.addAction(self.submitrf, validate=False) return form

def submitrf(self, c, f, d):

print "\nWhere am I ?\n" return url.URL.fromString('/')

}}}

For whatever reason, the action is never called.

Change History

06/09/06 13:33:36 changed by mg

I don't see this problem with the latest svn trunk.

Do you know what version (probably an svn repo number) you're using?

Also, what browser are you using and how does it make any difference how you submit the form (i.e. <enter> in the field vs click the button).