Hello,
We have a REST service that returns a list of elements. Each of these elements is formed by a string and an image. That API REST is called upon load on a page. That page, therefore has a grid that contains a label and an image, so that each element returned by the API is mapped to the grid, the string is mapped to the label and the image is mapped to the image. The grid is at first invisible, and becomes visible when the REST service call is a success.
The thing is that every time, the first grid displayed is empty (with the default image). The elements of the list are correctly displayed below, each one in its grid, but the first one is always empty.
This problem disappears if the grid is always visible. If we don't do the not visible-visible change when API call is successful, then no empty grid appears.
Any hints on what the problem might be?
Thank you very much