X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/6ce40ffcc8bed8fe566e2be63298d289211175fc..dcef8eb00b07cf85be6fe9f97e233b3e1d4847db:/SL/Layout/ActionBar/Action.pm diff --git a/SL/Layout/ActionBar/Action.pm b/SL/Layout/ActionBar/Action.pm index e73387769..bed33fe1c 100644 --- a/SL/Layout/ActionBar/Action.pm +++ b/SL/Layout/ActionBar/Action.pm @@ -20,21 +20,8 @@ sub script { sprintf q|$('#%s').data('action', %s);|, $_[0]->id, JSON->new->allow_blessed->convert_blessed->encode($_[0]->params); } -# static constructors - -sub from_descriptor { - my ($class, $descriptor) = @_; - require SL::Layout::ActionBar::Separator; - require SL::Layout::ActionBar::ComboBox; - - return { - separator => SL::Layout::ActionBar::Separator->new, - combobox => SL::Layout::ActionBar::ComboBox->new, - }->{$descriptor} || do { die 'unknown descriptor' }; -} - # this is mostly so that outside consumer don't need to load subclasses themselves -sub simple { +sub from_params { my ($class, $data) = @_; my ($text, %params) = @$data; @@ -47,8 +34,13 @@ sub p { SL::Presenter->get } +sub init_params { + +{} +} + # unique id to tie div and javascript together sub init_id { + $_[0]->params->{id} // $_[0]->p->name_to_id('action[]') } @@ -73,9 +65,8 @@ on click submit the form specified by form-selector with the additional params on click call the specified function (is this a special case of checks?) -- disabled => true/false (done) +- disabled => true/false/tooltip explaning why disabled (done) TODO: - runtime disable/enable -