Blogs
11
March
March
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! ;)
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! ;)
Download attachments:
Comments
- No Comments Found.