Morning Folks,
Looking for some help with weblink urls. I want a URL to display the whole document (zoom to fit length of page). Any suggestions for modifying the URL?
Thanks
Doug
Morning Folks,
Looking for some help with weblink urls. I want a URL to display the whole document (zoom to fit length of page). Any suggestions for modifying the URL?
Thanks
Doug
Hey Doug,
If I'm reading your question correctly, it sounds like you want to documents to default to opening in full screen mode when using a certain URL. Is that correct?
There is a way to set the default behavior in WebLink's doc viewer to to open documents in full screen mode, although currently this is not supported through URLs. If you'd like to change the default behavior, simply add the following line of custom javascript to the bottom of your DocView.aspx page:
<script type="text/javascript"> $(document).ready(function(){ document.getElementById("FullScreenButton").click()}); </script>
Note that this will open the doc viewer in full screen mode for all users. The document will open in full screen regardless of whether they access the document through URL or through the WebLink UI.