How do we use Box?
Our users upload files to Box via API. We save the box file id.
Later on, our users can view the uploaded file in our web app.
In order to display the document to the user, we use the Box API and we retrieve a shared link URL based on the saved file id, and we embed the document in an iframe.
What's the problem?
When we render the page with the document it's made of some layout that we have and some content, and then below it, we include the document from Box. Let's say it's placed 600px from the top of the browser.
What happens for the user is that we render the page with the iframe, and once the iframe with the document is loaded the browser jumps to the document. That means that the part of the content that we have for assumed 600px is now not visible to the user and they have to explicitly scroll up to see what we defined as the top of the page.
Is there a way to turn it off or an available workaround? Any advice is appreciated.