MultipleSelect
Sets if the user can select more than one item from the entry block list.
You must save the possible entries in a relevant location such as a link table.
This property is only applicable if the EntryType property is set to 21.
Values
This property can take one of the following values:
- true. Specifies that the user can select multiple entries.
If you set this value, make sure that the value set in the Size property allows the block to accommodate all possible entries. - false. Specifies that the user can only select one entry.
Example
b = CRM.GetBlock('companyboxlong');
e = b.GetBlock('comp_source');
e.MultipleSelect = true;
e.Size = 10;
r = CRM.FindRecord('company','comp_companyid=892');
CRM.AddContent(b.Execute(r));
Response.Write(CRM.GetPage());
Sets the comp_source entry block of the companyboxlong entry group to MultipleSelect; also sets the entry size to 10.