Answer the question
In order to leave comments, you need to log in
How to display the values of multiple bound properties in Bitrix using GetList?
Please tell me how to display the values of related multiple properties in Bitrix via GetList. For example PROPERTY_vvv.NAME is a multiple property (multiple values). On output:
$arFields["PROPERTY_VVV_NAME"]
$arSelect = array(
"ID",
"NAME",
"IBLOCK_ID",
"PROPERTY_*",
"PROPERTY_actors.NAME",
);
$arFilter = array("IBLOCK_ID" => $arParams["IBLOCK_ID"], "ID" => $id);
$rsElement = CIBlockElement::GetList(Array(), $arFilter, false, Array("nPageSize" => 1), $arSelect);
Answer the question
In order to leave comments, you need to log in
how do you work further with $rsElement ? As far as I remember, there the values of the multiple field will be separate elements of the returned result
upd: Apparently it is:
GetList
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question