kbuote wrote: I've gone through the forums, and it seems that all of the suggestions are outdated based on more recent updates.
I'd like for the updated DCP status for my club to appear on the custom page that I've set up. I've attempted the following link via iframe:
dashboards.toastmasters.org/ClubReport.aspx?id=00001653
If you copy/paste or click the link, it goes to the report. In iframe, it simply brings you to a Search Club window, and if I just put the link in by itself, it obviously just gives me a link to click on.
Is this possible?
Thanks,
Kevin B
Part of this is that you are apparently not recognizing that the Search Club window is actually what you want... the page is a responsive layout so it has shifted to accommodate the narrower window. If you scroll down in that window you will see your club's DCP results.
Here is what you can do to force the scrolling from the get-go... put a bookmark to an available ID in the URL reference. I found an element ID of globalnav that is close to the DCP results section. I found that the following should work for you (entered in Source View):
Code:
<iframe frameborder="0" height="1000" scrolling="yes" src="http://dashboards.toastmasters.org/ClubReport.aspx?id=00001653#globalnav" width="100%"></iframe>
Notice how I reference the globalnav id in the url to get the auto scrolling down to the vicinity of the DCP results. You may want to fiddle with the height and width of the iframe a bit. However, this can also be edited in the iframe dialog in the wysiwyg view. (the globe icon)
Finding an id that you can reference like this is the trick for getting iframe'd docs to show up in the right spot from the start. To find a useful id that you can reference, you have to view the source HTML for the doc you want to put in the iframe, and look for an element having an id=..." attribute on it before and near the content you want to have show up. (A bit advanced, but doable.)