2

If the column data has approximately more than 50 characters the column gets truncated at around 50. addColumn function has 'type' => 'text'

In the end there is [...]

This is both in the details pop-up and XLS download.

Question is, can this limit be increased from any configuration?

Rudolph
  • 139
  • 1
  • 8

1 Answers1

7

Yes, you can! There is a limit option on the column for that.

    $this->crud->addColumns([
        [
            'name' => 'name',
            'label' => 'Name',
            'type' => 'text',
            'limit' => 150,
        ],
        ...
    ]);
Claudson Martins
  • 348
  • 1
  • 3
  • 14