Blast-Radius Aware AI Code Review for Business-Critical Systems
LiveReview LiveReview Explore LiveReview

Embperl::Form::Control::tabs - A tab control inside an Embperl Form

Author

       G. Richter (richter at embperl dot org)

Description

       Control to display tabs at the top of the form and control the switching between sub forms.  The
       switching is done by Javascript, so it can only be used in environment where Javascript is available.

       You can use the method Embperl::Form -> add_tabs to setup a tabbed form.  See Embperl::Form on how to
       specify parameters.

   PARAMETERtext

       Text that will be displayed on the tab

       fields

       List of fields that should be displayed in this subform.  Given in the same form as form Embperl::Form.

Name

       Embperl::Form::Control::tabs - A tab control inside an Embperl Form

See Also

perl(1), Embperl, Embperl::Form

perl v5.34.0                                       2022-02-06                           Form::Control::tabs(3pm)

Synopsis

                   Embperl::Form -> add_tabs (
                       [
                           {
                           text => 'First Tab',
                           fields => [
                                     ...
                                     ]
                           },
                           {
                           text => 'Second Tab',
                           fields => [
                                     ...
                                     ]
                           }
                       ])

See Also