Hello, I am new in Business Central extension development and I want to create a multi-select lookup/dropdown field on Business Central Page. I want this field as party list in CRM used to specify many email addresses.
I used the following code on a page field but it only selects one row from the lookup table at a time.
field(SenderTo; ssc_sender_to_scalable)
{
ApplicationArea = All;
Lookup = true;
TableRelation = "Segment Line";
}
But I am unable to achieve this. How can I implement this functionality?
If the solution is creating control Add-In( javascript library for multi-selection), so How can we do this?
Please help me out as I have spent a lot of time on it but could not get through it. Thanks