Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • rasb 162 posts 218 karma points
    Jul 28, 2009 @ 00:45
    rasb
    0

    Umbraco custom section, no scroll bars

    Hi all,

    I have created an Umbraco Custom section for a specific application I have developed for a client. I am not entirely done with it yet, but I really like how easily you can extend the umbraco admin interface.

    My problem right now is that the application displays some log files, where each page has 100 records. The problem I have is that the IFRAME that displays the aspx page I have created does not have any scrollbars. So the page continues beyond the admin interface but it doesn't display any scrollbars.

    Has anyone seen this before or have any idea what I need to change?

    Thanks,
    RasB

    umbraco v 4.0.2.1

  • Kyle Skrinak 272 posts 327 karma points
    Jul 28, 2009 @ 01:22
  • rasb 162 posts 218 karma points
    Jul 28, 2009 @ 09:53
    rasb
    0

    Hi Kyle,

    The HTML I know, but I just don't know where to apply it in Umbraco.

    The page is limited by the Umbraco admin interface content page, and I guess that is what needs to be changed a bit.

    Thanks,
    RasB

  • rasb 162 posts 218 karma points
    Jul 28, 2009 @ 12:22
    rasb
    1

    OK... as far as I can tell it is about letting the page use the umbracoPage.master masterpage like this.

    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="mypage.aspx.cs"
        Inherits="mypage" MasterPageFile="~/umbraco/masterpages/umbracoPage.Master" %>
    
    <%@ Register TagPrefix="mql" TagName="myusercontrol" Src="myusercontrol.ascx" %>
    <%@ Register TagPrefix="cc1" Namespace="umbraco.uicontrols" Assembly="controls" %> <asp:Content ID="Content2" ContentPlaceHolderID="body" runat="server"> <cc1:UmbracoPanel ID="panel1" runat="server"> <cc1:Pane ID="pane1" runat="server"> <mql:myusercontrol ID="mql" runat="server"></mql:mailqueue>
    </cc1:Pane> </cc1:UmbracoPanel> </asp:Content> <asp:Content ID="Content3" ContentPlaceHolderID="footer" runat="server"> </asp:Content>

    It messes a bit with my layout, but i guess that is just about cleaning it up a bit to fit with the umbraco layout.

    /RasB

Please Sign in or register to post replies

Write your reply to:

Draft