Hi guys,
I have this common data under my install:
for($i = 1;$i<=12;$i++)
$months[date('M', mktime(0,0,0,$i))] = date('M', mktime(0,0,0,$i));
Utils_CommonDataCommon::new_array('BCon_STP_YMonths',$months,true,true);
How can i have a multiple select field from this common data iv tried several diferent ways but i cant make it work... 🙁
$field = new RBO_Field_MultiSelect('Trading Places Months');
$field->from('BCon_STP_YMonths')->fields("??? what should i place here???")->set_visible()->set_required();