function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Priyesh Misquith 12Priyesh Misquith 12 

passing values from Apex and display in VF page.

How can i pass the following value from apex  and display in VF page.

I have an object array  
 Object[] ObjArray = new Object[] {}; 
and the values are stored in the following format 
({wrapoffering:[URL=null, childTitle=({wrapchildOffering:[childImageUrl=null, childTitle=ABC, childURL=https://google.com]}), imageUrl=https://google.com,parTitle=Website], 
wrapoffering:[URL=null, childTitle=({wrapchildOffering:[childImageUrl=null, childTitle=DEF, childURL=https://google.com]}), imageUrl=https://google.com, parTitle=Website], wrapoffering:[URL=null, childTitle=({wrapchildOffering:[childImageUrl=null, childTitle=GHI, childURL=https://google.com]}), imageUrl=https://google.com, parTitle=Website]})

Now i want to display these values in the VF page.

Please suggest me how can i display this values.