X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FClientJS.pm;h=0da0afd57a84ea93b7c59486e2cddac8ccb30b18;hb=223e6d0cf51b9847fd164b76c5a7fb77219f1855;hp=ff4aeb8e2eb015b218cc5a4ae5aaaf67592c705b;hpb=a82f3befb2c673b0d1af747033a284ef2434c061;p=kivitendo-erp.git diff --git a/SL/ClientJS.pm b/SL/ClientJS.pm index ff4aeb8e2..0da0afd57 100644 --- a/SL/ClientJS.pm +++ b/SL/ClientJS.pm @@ -9,6 +9,7 @@ use SL::JSON (); use Rose::Object::MakeMethods::Generic ( + scalar => [ qw(controller) ], 'scalar --get_set_init' => [ qw(_actions _flash _error) ], ); @@ -65,7 +66,7 @@ my %supported_methods = ( removeData => 2, # Form Events - focus => 1, + focus => 1, # kivi.set_focus() # Generic Event Handling ## pattern: $().(, kivi.get_function_by_name()) on => 3, @@ -106,6 +107,9 @@ my %supported_methods = ( 'jstree:deselect_node' => 2, 'jstree:deselect_all' => 1, + # ## ckeditor stuff ## + 'focus_ckeditor' => 1, # kivi.focus_ckeditor_when_ready() + # ## other stuff ## redirect_to => 1, # window.location.href = @@ -185,6 +189,7 @@ sub to_array { sub render { my ($self, $controller) = @_; + $controller ||= $self->controller; $self->reinit_widgets if $::request->presenter->need_reinit_widgets; return $controller->render(\$self->to_json, { type => 'json' }); } @@ -201,6 +206,12 @@ sub dialog { return $self; } +sub ckeditor { + my ($self) = @_; + $self->{_prefix} = 'ckeditor:'; + return $self; +} + sub flash { my ($self, $type, @messages) = @_; @@ -260,7 +271,7 @@ Now some Perl code: my ($self) = @_; # Create a new client-side JS object and do stuff with it! - my $js = SL::ClientJS->new; + my $js = SL::ClientJS->new(controller => $self); # Show some element on the page: $js->show('#usually_hidden'); @@ -286,7 +297,7 @@ Now some Perl code: # Rendering can also be chained, e.g. $js->html('#selector', $html) - ->render($self); + ->render; } =head1 OVERVIEW @@ -336,13 +347,16 @@ are the function parameters. Returns the actions gathered so far as a JSON string ready to be sent to the client. -=item C +=item C Renders C<$self> via the controller. Useful for chaining. Equivalent to the following: $controller->render(\$self->to_json, { type => 'json' }); +The controller instance to use can be set during object creation (see +synopsis) or as an argument to C. + =item C Tells C<$self> that the next action is to be called on a jQuery UI