Quantcast
Channel: Urdhva Tech | SugarCRM and SuiteCRM Customization and Development
Viewing all articles
Browse latest Browse all 66

Create Controls, Sugar way!

$
0
0
Greetings!

Have you ever wondered, how can I create an input/date/dropdown control without manually writing the html tags in SugarCRM?

If you dint find the solution, there you go!! Worth appreciating ;)


require_once("modules/Import/Forms.php");
$moduleName = '<Your_module_name>';
$oModule = BeanFactory::getBean($moduleName);
$fieldName = '<Your_field_name> ';
echo getControl($moduleName, $fieldName, $oModule->getFieldDefinition($fieldName), "");



I can hear the grand Applause! ;)

Viewing all articles
Browse latest Browse all 66

Trending Articles