- Added "Save and Commit" option for environments where the appearance of

workflow is unwanted.
This commit is contained in:
JT Smith 2006-07-25 21:11:14 +00:00
parent f1159269a0
commit 09af3e8785
6 changed files with 44 additions and 3 deletions

View file

@ -280,6 +280,19 @@ sub submit {
$self->{_submit} = WebGUI::Form::Submit($self->session,$submit);
}
#-------------------------------------------------------------------
=head2 submitAppend ( html )
Appends some HTML to the submit button.
=cut
sub submitAppend {
my $self = shift;
my $html = shift;
$self->{_submit} .= $html;
}
1;