Display more than 10 records in SQS search.

SugarCRM, SuiteCRM Navin Rakhonde
SugarCRM by default displays 10 records as a search result after SQS. As an example, we take Opportunities module with after_ui_frame logic hook. Steps are as below, Step 1 : Create logic hook entry as follows $hook_array['after_ui_frame'] = Array(); $hook_array['after_ui_frame'][] = Array(5, 'Change SQS result records', 'custom/modules/Opportunities/logic_hooks/changeSQSRecordCount.php', 'changeSQSRecordCountC','changeSQSRecordCountF'); Step 2 : Open…
Read More