Blog

How to Add Buttons to Views in SugarCRM

Posted by on December 13, 2012
Learn how to add custom buttons on detail views, list views, and subpanels with a simple line of javascript and the use of a logic hook all in an upgrade-safe sort of way.

Prevent a Logic Hook From Running Multiple Times

Posted by on December 6, 2012
Logic hooks are fairly straightforward and easy in most cases. However, co-existing with other hooks in a known or unknown environment can sometimes leave you scratching your head. In this post, we cover the infinite loop scenario.

How to Package and Install Global Logic Hooks

Posted by on November 29, 2012
Ever needed to package and distribute SugarCRM customizations that include global logic hooks? This brief blog post explains how.

Saving Admin Options For A Custom SugarCRM Module

Posted by on November 15, 2012
Previously, we covered how to Add Your Own Links to the SugarCRM Admin Option Page. This post will cover how to save configurations on that option page to the database using SugarCRM's Administration class.

Manifest Utils Directive in a SugarCRM Module

Posted by on November 8, 2012
The "utils" option allows you to define custom global utility functions. One use of a custom utility function is for populating a dropdown from the database. For example, you may wish to have a custom field on a contract that tracks what product is associated to it. There are two main steps to do this; define the custom function and then tell the custom field to pull from the function.