[xwiki-users] Show HTML/ASPX in panel
I would like to show an existing HTML or ASPX page in a panel. Does anyone know the velocity code to make this happen? -- View this message in context: http://xwiki.475771.n2.nabble.com/Show-HTML-ASPX-in-panel-tp7587400.html Sent from the XWiki- Users mailing list archive at Nabble.com.
The minute I posted my question, the idea to use an iframe hit me :-) {{velocity}} #panelheader('My Header') {{html}} <div> <iframe src=".../default.aspx" height="800"> </iframe> </div> {{/html}} #panelfooter() {{/velocity}} Now I want to change the WIDTH of my panel(s). How/where can I change the width of a panel? -- View this message in context: http://xwiki.475771.n2.nabble.com/Show-HTML-ASPX-in-panel-tp7587400p7587401.... Sent from the XWiki- Users mailing list archive at Nabble.com.
Hi. The width of the panels is setted in the CSS of the skin. For example, with the default skin: #rightPanels { float: right; margin: 0 0 0 -220px; width: 220px; } #leftPanels { float: left; margin: 0 0 0 -100%; width: 220px; } So you have to edit the skin or create a new one: http://platform.xwiki.org/xwiki/bin/view/AdminGuide/Skins Regards, Louis-Marie 2013/10/4 Hamster <[email protected]>
The minute I posted my question, the idea to use an iframe hit me :-)
{{velocity}} #panelheader('My Header') {{html}} <div> <iframe src=".../default.aspx" height="800"> </iframe> </div> {{/html}} #panelfooter() {{/velocity}}
Now I want to change the WIDTH of my panel(s). How/where can I change the width of a panel?
-- View this message in context: http://xwiki.475771.n2.nabble.com/Show-HTML-ASPX-in-panel-tp7587400p7587401.... Sent from the XWiki- Users mailing list archive at Nabble.com. _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
Thanks Louis-Marie, I got a similar answer (with more info) in this thread: Change width of panel <http://xwiki.475771.n2.nabble.com/Change-width-of-panel-td7587403.html> -- View this message in context: http://xwiki.475771.n2.nabble.com/Show-HTML-ASPX-in-panel-tp7587400p7587477.... Sent from the XWiki- Users mailing list archive at Nabble.com.
participants (2)
-
Guillaume "Louis-Marie" Delhumeau -
Hamster