I am looking to add items to the dynamic view so far it worked for the camera,html and image but i have a problem with adding a caroussel. I am following the method used in the dynamic sdk where we use
viewAndLayoutItem.InsertBuiltinViewItem(index++,
ViewAndLayoutItem.CameraBuiltinId,
new Dictionary<string, string>()
{
{ "CameraId", alarm.EventHeader.Source.FQID.ObjectId.ToString() }
});
to add a camera, so how can we do it to add a caroussel if you can please assist.
Thank you
Just like there is a ViewAndLayoutItem.CameraBuiltinId there is also a ViewAndLayoutItem.CarrouselBuiltinId
Looking at it in the documentation it is unclear to me if it is possible to use, whether you would get an empty carrousel. Perhaps you can try and the share your experience.
--
A Carrousel View Item. No properties used. The Smart Client use will have to configure the content afterwards.
Guid VideoOS.Platform.Client.ViewAndLayoutItem.CarrouselBuiltinId = new Guid(“AF5929D4-0986-4de7-928E-C0353CE9F03F”)
-
Ref. https://doc.developer.milestonesys.com/html/index.html?base=miphelp/class_video_o_s_1_1_platform_1_1_client_1_1_view_and_layout_item.html&tree=tree_search.html?search=camerabuiltinid
I looked a bit into the implementation and unfortunately the documentation is correct in that no properties can be provided and thus the carrousel will have to be manually configured by the user afterwards, so no need to do experiments on your side.
Update: We will provide support for the properties for both the carrousel and the image view item for Smart Client 2024 R1.