How to disable QuickCreate?

I some cases (for some modules) I want to force Users to use “Full Form”…obviously I could ensure that QuickCreate had the same layout as EditView but I would prefer to disable quick-create and have CREATE button link directly to Full Form.

is there an upgrade-safe solution to this?
Thanks
Andrew

Subpanel definition can be changed to not use quick create form but to take you to full form by default for that subpanel.

It’s upgrade safe change.

You can try:

Create the file "custom/Extension/modules/Accounts/Ext/Layoutdefs/fullFormCreateContacts.php" as follows: 

$layout_defs["Accounts"]["subpanel_setup"]["contacts"]["top_buttons"] = array(
        array(
            'widget_class' => 'SubPanelTopCreateButton',
        ),
        array(
            'widget_class' => 'SubPanelTopSelectButton',
            'mode' => 'MultiSelect',
        ),
    );


Navigate to Admin > Repair and click "Quick Repair and Rebuild".

More info here:
http://support.sugarcrm.com/04_Find_Answers/03_Developers/100Customization/Modifying_Subpanel_Action_Buttons/

1 Like