Function fieldType with parameter 'multiselect_searchable'. and groupFields

I am using Grocery CRUD Enterprise version 3.2.7

In the form I use an item of type SET and display it using
fieldType with parameter ‘multiselect_searchable’.

$crud->fieldType('bd_oblasti', 'multiselect_searchable', [
    'tvalbp' => 'technologie pro vesmírné aplikace a letectví včetně bezpilotních prostředků,',
    'ncmt' => 'návrh čipů a mikroelektronické technologie,',
    'midsu' => 'e-mobilita, inteligentní dopravní systémy a udržitelnost,',
    'szsaibt' => 'sběr a zpracování signálů včetně audio inženýrství a biomedicínských technologií,',
    'oze' => 'obnovitelné zdroje energie,',
    'ae' => 'akumulace energie,',
    'je' => 'jaderná energetika,',
    'vpduee' => 'vyroba, přenos, distribuce a užití elektrické energie,',
    'tps' => 'technologie pro Průmysl 4.0 / 5.0 a Společnost 5.0,',
    'uisuad' => 'umělá inteligence, strojové učení a analýza dat,',
    'ktssdiv' => 'komunikační technologie a systémy sběru dat včetně internetu věcí, 5G/6G, V2X,',
    'hrscsks' => 'heterogenní robotika, systémy člověk-stroj a kyberfyzikální systémy,',
    'pkt' => 'plazmové a kvantové technologie,',
    'ostatni' => 'ostatní hledané znalosti a dovednosti ...',
]);

When the item is displayed in the window where all items are displayed, the content is displayed correctly, see fig

But when I use the “groupFields” function to divide the items into groups

$crud->groupFields("Contact", [
  'bd_firma',
  'bd_person_name',
  'bd_person_email',
  'bd_person_tel',
]);
$crud->groupFields("Areas of interest", [
  'bd_oblasti',
  'bd_ostatni',
  'bd_poznamka',
]);
$crud->groupFields("Rok konání", [
  'bd_datum_reg',
  'bd_rok',
]);

and then I display them, so the item is empty, nothing is displayed there, see the picture

Can you please advise me what to do with it so that the item is displayed correctly

Thank you

Petr