Repeat ampli's fix (described below) for other occurances on the site.
``The Save buttons in the two first steps didn't work in Chrome.
According to a hint in the YUI Button documentation about a problem in using
"submit" as a value of the name attribute, I changed submit button name
in the two first steps from "submit" to "send". This solved the problem.''
This commit is contained in:
parent
ebbbeb6609
commit
54ae754ebe
27 changed files with 44 additions and 44 deletions
|
|
@ -236,7 +236,7 @@ Returns the form that will be used to edit the properties of an activity.
|
|||
sub getEditForm {
|
||||
my $self = shift;
|
||||
my $form = WebGUI::FormBuilder->new($self->session);
|
||||
$form->addField( "submit", name => "submit" );
|
||||
$form->addField( "submit", name => "send" );
|
||||
$form->addField( "hidden", name=>"activityId", value=>$self->getId);
|
||||
$form->addField( "hidden", name=>"className", value=>$self->get("className"));
|
||||
my $fullDefinition = $self->definition($self->session);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue