Hey,
This is a quick question about displaying data as there is two methods that we could go about displaying it.
Scenario. We have a list of 6 items on the left hand side. On the right hand side is an empty space to show content based on what item of the list is clicked.
Method 1) Load ALL 6 contents on top of each other, set all of them as visible=“false” then as each list item is clicked each content’s visibility (true/false) is toggled.
Method 2) Load ONE content, then as each list item is clicked the current content is destroyed and a new content is loaded in.
So basically, what is the better method. To load EVERYTHING at once and then toggle the visibility of each or destroy a content and load a new one.
This is for a Windows application and we want to follow the right industry standard.
Cheers,
Ryan