Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Current »

To enable horizontal scrolling for a check box group form item, you must set the 'ControlGroupVertical' property to 'false'. A sample code snippet is provided for your reference:

this.fm.registerHandler("cbxpreinitialize", function(fm, event, fieldname, value)
{
	return
	{
		'OTHER_ACCOUNTS_CHKBOXGRP':
		{
			ControlGroupVertical : false;
		}
	};
}); 
//Here, OTHER_ACCOUNTS_CHKBOXGRP is the Item ID of the check box group form item. 




  • No labels