Thanks pgr. There are two changes. One I can make upgrade safe, the other I canβt.
The upgrade safe one that works.
I changing the number of rows on a dashlet.
In the file /suitecrm/public/legacy/php.config
I modified the row as follows,
β
βdashlet_display_row_optionsβ =>
array (
0 => β1β,
1 => β3β,
2 => β5β,
3 => β10β,
4 => β30β,
β
then saved the file in
/suitecrm/public/legacy/custom/php.config This works just fine.
The Upgrade safe modication that does not work, and is not upgrade safe, and I cant figure out why.
I changed the number of fields ( Columns) in a dashlet.
In the file /legacy/include/Dashlets/DashletGeneric.php
I modified the row as follows
β
$chooser->args[βmax_leftβ] = β6β;
$chooser->args[βmax_leftβ] = β10β;
β
then saved the file in
/legacy/custom/include/Dashlets/DashletGeneric.php
I reload Suitecrm, did a quick repair ( no effect).
Changing the number of rows stuck through an update, changing the number of fields had a more complicated result. The dashlets that had their # of fields previously increased stayed the same through the update. those dashlets that had not been modified, were unable to be increased.
I would really like to be able to modify numbers of rows, up to say 10, .
Thanks.