Skip to content

Call to undefined method DataTables\Controller\Component\DataTablesComponent::callback()  #74

@jsonjuri

Description

@jsonjuri

Hi,

I am loading $columns from the controllers and pass them to the view with set.

After setting the render attribute in the columns array like in your documentation CakePHP was giving the following error:

Call to undefined method DataTables\Controller\Component\DataTablesComponent::callback()

I found out callback was only in DataTablesHelper not in the Component.
I copied this function to DataTablesComponent:

public function callback(string $name, array $args = []) : CallbackFunction
{
        return new CallbackFunction($name, $args);
}

And added use to the top of DataTablesComponent

use DataTables\Lib\CallbackFunction;

Now it's working fine, but not sure it was meant to work like this?
Or did you add it to Helper with the purpose of loading $columns in the view?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions