How to Create Page Regions of Equal Size

Can someone please help on how I can Create the page regions with equal HEIGHT blocks organized along the x-axis_ - as in the apex IDE tool menu path (and many areas of apex IDE ): "*Administration -> Dashboard -> Users*" tab (apex 4.0 version)
You'll notice that irrespective of the report data contained in each of the region blocks on that page, the height of all the regions are well organized along the horizontal x axis and with same heights (row 2 specifically) :).
I'm having 3 regions on my page with Lists of links. But each region has different number of list-entries, thus my regions are not displaying the same height. I'm using Template 20 and region template as: "Borderless Region". Applying ReportRegiont template also doesn't help.
To summarize, irrespective of the height of the list-entries shown in each of my 3 regions on the page - Display Point: Page Template Body (1) - columns 1,2&3 - ", the surrounding region x-y height should be same - potentially equal to the y-axis height of the region containing the maximum list entries.
Thx in advance,
SV

Hello SV,
you can fix the height of region by this way..
Edit the region
In Region Header section put
<table width="100%" cellspacing="0" cellpadding="0" border="1" align="left">
<tr height="350px" width="450px" align="left" valign="top"> //you can set height and width according to you
<td>
In Region Footer section put
</td>
</tr>
</table>
put the above code in all region of your page...this make your all region same height and width.
Hope this will helps you.
Thanks,
jitu

Similar Messages

  • How to create a region which should float in a page . (Like as windows cal)

    Hello Friends
    Using
    Apex Version 4 +.
    Oracle database 11g.
    How to create a region which should float in a page .
    ie i can move that region inside that page anywhere like as windows calculator.
    Can anyone please help me.
    Thanks in advance
    regards
    Edited by: A on Apr 13, 2011 1:48 AM
    Edited by: A on Apr 13, 2011 1:48 AM

    Hi,
    You can use a jQuery dialog.
    http://docs.jquery.com/UI/Dialog
    e.g. create html region, just say you give the region static id: floating-region, make it hidden by adding attributes: style="display: none;"then do like: $('#floating-region).dialog();
    I made another post on steps to create a dialog. See: {message:id=9506160}
    Ta,
    Trent

  • How to create page zero in oracle apex 4.0?

    Hi All,
    How to create page zero in oracle apex 4.0?
    Regards
    Mani

    Hi,
    Home > Application Builder > Application xxx > Create Page
    At bottom center on wizard there is Page Zero
    Regards,
    Jari
    Edited by: jarola on Aug 25, 2010 7:28 PM
    And here is chapter about in documentation
    http://download.oracle.com/docs/cd/E17556_01/doc/user.40/e15517/ui.htm#BGBFFFGH

  • How to create an commerce chart of sizes and prices, etc?

    How to create an commerce chart of sizes and prices, etc?

    Hi,
    Andreas is right, we have many ways to deploy Windows 8.1 like OEM.
    You can also try the ADK:
    Windows Assessment and Deployment Kit (Windows ADK) for Windows 8.1
    http://www.microsoft.com/en-hk/download/details.aspx?id=39982
    The Windows ADK enables two key scenarios: Windows deployment and Windows assessment.
    Windows Deployment is for OEMs and IT professionals who customize and automate the large-scale installation of Windows on a factory floor or across an organization.
    Kate Li
    TechNet Community Support

  • How to create ADF region without Task Flow

    I want to divide my page into different regions, but I don't want to have any bounded task flow under each region. I want to include Page Fragment inside the Region.
    I find the example of creating Region using some page flow, would you please help me, how to create Region that contains only page fragment, actually the problem I am facing, I don't know what I will provide in value attribute in Region tag, that is expecting some Region Model.

    Hello, RajeshBiswas.
    A solution could be to generate 'MultiTaskFlow' for indeterminate number of regions or multiple regions on the same page.
    It would be necessary to create a single file to define all participating 'TaskFlows' on page:
    1. Select 'new -> ADF Task Flow (JSF/Facelets)'
    2. May include all 'jsff' files as:
    <task-flow-definition id="genericTaskFlow1">
        <default-activity>case1</default-activity>
        <view id="case1">
          <page>/pages/case1.jsff</page>
        </view>
        <use-page-fragments/>
      </task-flow-definition>
      <task-flow-definition id="genericTaskFlow2">
        <default-activity>case2</default-activity>
        <view id="case2">
          <page>/pages/case2.jsff</page>
        </view>
        <use-page-fragments/>
      </task-flow-definition>
    It should create a Managed Bean to implement the List of Task Flow Bindings:
    1. Create a new Class with de following code:
        private List<TaskFlowBindingAttributes> mTaskFlowBindingAttrs = new ArrayList<TaskFlowBindingAttributes>();
        public MultiRegionBean()
            TaskFlowBindingAttributes tfAttr = new TaskFlowBindingAttributes();
            tfAttr.setId("region1");
            tfAttr.setTaskFlowId(new TaskFlowId("/WEB-INF/.../ADFTaskFlow.xml", "genericTaskFlow1"));
            mTaskFlowBindingAttrs.add(tfAttr);
            tfAttr = new TaskFlowBindingAttributes();
            tfAttr.setId("region2");
            tfAttr.setTaskFlowId(new TaskFlowId("/WEB-INF/.../ADFTaskFlow.xml", "genericTaskFlow2"));
            mTaskFlowBindingAttrs.add(tfAttr);
        public List<TaskFlowBindingAttributes> getTaskFlowList()
            return mTaskFlowBindingAttrs;
    2. Define this new class into the 'adf-config.xml' file as Managed Bean with 'pageFlow' scope.
      <managed-bean id="__1">
        <managed-bean-name>managedBeanName</managed-bean-name>
        <managed-bean-class>className</managed-bean-class>
        <managed-bean-scope>pageFlow</managed-bean-scope>
      </managed-bean>
    At the page definition, add a MultiTaskFlow inside <executables> tag:
        <multiTaskFlow id="multiTaskFlow1" taskFlowList="#{pageFlowScope.multiRegionBean.taskFlowList}"
    On the page, insert regions in the desired locations. For example:
        <af:group id="g2">
            <af:panelAccordion id="pa1" inlineStyle="width:50%; height:400px;">
                    <af:showDetailItem text="showDetailItem 1" id="sdi1">
                    <af:region id="r1" value="#{bindings.multiTaskFlow1.taskFlowBindingList[0].regionModel}" >
                    </af:region>
                    </af:showDetailItem>
            </af:panelAccordion>
            <af:panelAccordion id="pa2" inlineStyle="width:50%;">
                    <af:showDetailItem text="showDetailItem 1" id="sdi2">
                    <af:region id="r2" value="#{bindings.multiTaskFlow1.taskFlowBindingList[1].regionModel}" >
                    </af:region>
                    </af:showDetailItem>
            </af:panelAccordion>
        </af:group>
    Reference: 21.10 Configuring a Page To Render an Unknown Number of Regions

  • How to create a Region without Task Flow

    I want to create a Region without creating bounded task flow.
    I need to divide my page into some Regions, and I want to have Page Fragments under each region.
    I created one Region but not able to understand what I need to give as value attribute
    <af:region value="">
    I am confused what is needed as value attribute, it is required as RegionModel, would you please help me regarding this?

    Hi,
    Instead of using region, try using <af:declarativeComponent> for this.
    Refer below-
    https://blogs.oracle.com/jheadstart/entry/avoid_use_of_jspinclude_where
    Thanks,
    Ansh

  • How to create page breaks in numbers?

    How do I create page breaks in iCloud Numbers?   The spreadsheet I created is 4-5 pages long, but it saves as one long scrolling document, and when it prints, all 4-5 pages are seen (very small, unreadable font) on a single page.  Any ideas?
    Thanks!
    Dave

    This excel feature is not exactly available in Numbers.
    Here we may create up to 255 sheets in a document. They are reachable from the thumbnails area.
    And each sheet may embed up to 255 tables also reachable from the thumbnails area.
    Think different or use Excel !
    Yvan KOENIG (from FRANCE mardi 23 juin 2009 12:20:18)

  • How to create motif Region in Java???

    How can u create Motif Region In Java or Java Swing???
    If you know, please let me know.
    thanks
    Amit

    Regions in motif are arbitrary set of pixel locations. You can locate a point or rectange in a region.

  • How to Create Page Navigation : ADF Swings

    How can i create Page Navigation in ADF swings ,which displays 20 records per page .
    Regards
    Bhanu Prakash

    Hi,
    if you base this on ADF then just edit the table binding to show 20 records at a time. The default is 10
    Frank

  • How to create page curl of page turn animation

    I can only scroll the pages in the iBook I made, I like curling pages but don't know how to create them

    See this User Tip:
                     iBA Tips and Tricks 01
    ...on page turn animations.
    Ken

  • How to create Multiple Region In to One Region

    hi
    How to create Morw then one into one Region.
    Thanks
    Manoj
    Edited by: Manoj Kaushik on Jan 4, 2010 6:08 AM

    Hi,
    this can be done in Apex 4.0 but in previous Releases i think it is not possible so far i know.
    MDK.

  • How to create pages & portal

    Hi
    I am new to Oracle portal. i am using Oracle 3.0.
    i am working on an application in portal. i have created n number of forms, reports, dynamic pages, menus, sub menus & lovs etc. currently i access my application in a raw manner. first login , then go to the navigator link then applications & click on menu.
    my menu is a single entry point to my application. how can i publish this. i.e what i want to do is the moment user logs in he should straight away get the menu view.
    I have read there is something by which we can create pages & publish them.
    Could someone tell me how to create a page where i can drop my components such as menu , forms & reports on to it & then create a complete portal.
    I can see a create page in my oracle portal but the moment i try to add a portlet in that page it gives me option for adding an appliction only what i want to add is the componenets(such as menus, forms etc) residing inside my application.
    what it gives me is 2 options 1 to edit & the other to navigate the application only, here i can see my components but cannot include them in my page.
    Kindly reply
    Regards
    Sushant

    still trying to figure out any solution. Please let me know if any one had similar requirement before.

  • How to create pages & portlets

    Hi
    I am new to Oracle portal. i am using Oracle 3.0.
    i am working on an application in portal. i have created n number of forms, reports, dynamic pages, menus, sub menus & lovs etc. currently i access my application in a raw manner. first login , then go to the navigator link then applications & click on menu.
    my menu is a single entry point to my application. how can i publish this. i.e what i want to do is the moment user logs in he should straight away get the menu view.
    I have read there is something by which we can create pages & publish them.
    Could someone tell me how to create a page where i can drop my components such as menu , forms & reports on to it & then create a complete portal.
    I can see a create page in my oracle portal but the moment i try to add a portlet in that page it gives me option for adding an appliction only what i want to add is the componenets(such as menus, forms etc) residing inside my application.
    what it gives me is 2 options 1 to edit & the other to navigate the application only, here i can see my components but cannot include them in my page.
    Kindly reply
    Regards
    Sushant

    Hi,
    First go to the navigator and click on the pages tab. From there click on create page link. Give the name of the page and finish with the page wizard. Then click on the created page from the navigator. Edit the page by clicking on the edit page link. Click on the "Add Portlet" icon and from there drill down into the application where the component is and then add it to the page. Make this page the default page for the users, who should see it when they log in.
    Hope this helps.
    Thanks,
    Sharmila

  • How to create a region using JDeveloper11g

    Guys,
    Requesting you to help in creating a region. Provide me any document you have or suggest me the guidelines to proceed with.
    Thanks,
    KK

    Drew13, I don't think the inspector actually offers 0 as a choice - I think that's the reason for the post (otherwise I would have replied).
    If you check all the boxes, does that mean it's 0 ??
    Quad 2.5 G5. 8 GB Ram. 250 & 500 GB Internal Drives. G-Tech G-Raid 1 TB   Mac OS X (10.4.6)   FCP 5.0.4 (FC Studio). Photoshop CS2. Sony HVR-Z1E

  • How To Create New Region in standerd Page?

    Hi Friends,
    i got the requirement in OAF. i am in new oaf pl z any one help to me..
    My requirement is in SSH R Responsibility add the new custom region how to add the custom Region in Standered Page.
    Thanks.
    Srini

    Hi,
    Thank full for replaying...And i have one more doubt in SSHR Page having Table RN in Competences Region my requirement is here Table get the 1.FUNC Values and 2 BEHV Values so we split the both things how?
    i am approaching in this way first i create the 2 view objects through vo extension because it will came the same vo so i create the 2 vo's now how to add the competences RN.
    plz help me this is urgent......

Maybe you are looking for