Increasing the maximum display size of a dashlet?

Easy to do? Or not so much? Would like to up the number of records displayed on the call module past 10.

Thanks!

Hi,

You can add your own options for how many rows you want to display at one time.

If you open your config.php file for the CRM and find the array:

  'dashlet_display_row_options' => 
  array (
    0 => '1',
    1 => '3',
    2 => '5',
    3 => '10',
  ),

You can add additional options here. For example, if you want to add the option to have 20, you can add it as another row in the array like so:

  'dashlet_display_row_options' => 
  array (
    0 => '1',
    1 => '3',
    2 => '5',
    3 => '10',
    4 => '20',
  ),

Save your changes to the config.php file

Then, run a Quick Repair and Rebuild in the Admin > Repair page

You should then be able to use “20” as an option in the Dashlets.

2 Likes

Thanks! Excellent info.