Extending/Customize List View

SugarCRM, SuiteCRM Navin Rakhonde
Today We came across a forum question which asked to hide "Closed Lost" opportunities from list view. Simple steps and you are through! Step 1: Create or edit custom/modules/Opportunities/views/view.list.php and add following code, <?php require_once('include/MVC/View/views/view.list.php'); class OpportunitiesViewList extends ViewList { function listViewProcess() { global $current_user; $this->processSearchForm(); if(!$current_user->is_admin) // remove this…
Read More

Creating new Dashlets based on default

SugarCRM, SuiteCRM Navin Rakhonde
Here are the steps to create new dashlet based on SugarCRM's OOB dashlet. In this blog, we are extending My Open Tasks dashlet to show Tasks until NOW. Steps are as below, Step 1: Copy modules/Tasks/Dashlets/MyTasksDashlet to custom/modules/Tasks/Dashlets folder. Rename MyTasksDashlet folder to MyTasksUntilNowDashlet. Step 2: Go to custom/modules/Tasks/Dashlets/MyTasksUntilNowDashlet/ Rename…
Read More