Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Replaced 'cbx' prefixed events with Canvas Constants.

To enable vertical scrolling for a radio button group form item, you must set the 'ControlGroupVertical' property to 'true'. A sample code snippet is provided for your reference:

Code Block
languagejs
this.fm.registerHandler(

...

CFEC.PRE_INITIALIZE, function(fm, event, fieldname, value)
{

...


	return

...

 
	{
		'TRANSFER_FROM_RADIOBTNGRP':

...


		{
			ControlGroupVertical : true;
		}
	};
});
//Here, TRANSFER_FROM_RADIOBTNGRP is the Item ID of the radio button group form item.


Image Modified