Skip to Content
0
May 08, 2020 at 08:54 AM

CustomControl SAPUI5

97 Views

I've found this code on Github. We have Custom List Item control here. Also, we have 2 js-files and 1 xml. In xml we have 5 tags

<cust:CustomList items="{/grid}"> <cust:items> <cust:CustomListItem href1="{hyperlink}" src1="{image}"/> </cust:items> </cust:CustomList>

So, I need to rewrite these 2 js-files in one file, and instead of 5 tags in xml I need to make just one tag like this <cust:CustomList items="{/grid}" href1="{hyperlink}" src1="{image}"/>. Can you help me&