How to make a region "block" instead of "inline"

Sorry if this is a facile question, but I'm new to Apex and its UIs, and I haven't been able to find a way around this problem.
So, I have a hidden region that is shown when a button is hit. Both the hiding of the region when the page is loaded and the showing of the region when the button is pressed are done through dynamic actions. However, when the hidden region (a form consisting of a single text-area) is shown it is to the right of the first region (a report). this is what would be considered inline display in HTML. I want it to be under the region before it (or block display, in HTML-speak). Do I have to edit the page's HTML and use divs, or is there a way to do this using the various options in the Apex UIs?
Edited by: 930020 on Apr 24, 2012 6:49 PM
Edited by: 930020 on Apr 24, 2012 6:49 PM

You can achieve this through the use of CSS styles in the Region Attributes/ HTML Table cell Attributes .
E.g. to set the display:block for the region put the below line in the Region Attributes field of the Region
style="display:block;"However, at times some of the property settings do not work as expected because they interfere/conflict with the CSS Class definitions associated with the items. That is when FF with Firebug or IE with Dev Tools comes in handy.
Regards,

Similar Messages

  • How to make an interactive block ALV

    Hi,
       I am new to the field of ABAP and have recently started working on ALV's. My problem is that i do not know how to make an interactive block ALV. I have implemented this functionality with the simple ALV but I am not getting the same for block ALV. Anyone who has worked on the same or has any idea please help me.
    Regards.
    Alok Bhardwaj

    Hi jester526,
    You'll need Acrobat to create links in a PDF file. Please see https://acrobatusers.com/tutorials/creating-and-editing-links for instructions.
    Best,
    Sara

  • How to make separately editable blocks in one widget?

    How to make separately editable blocks (Width, Height, BGColor,...) in one widget?

    There's an example widget for a 5x5 table which allows you set the color of different areas differently.
    Download the sample files at the bottom of the MUCOW documentation page:
    MuCow Documentation
    The sample named 'Table5x5.mucow' sets different parts of the widgets to different colors.

  • How to make the Region Fild in Vendor Master as a Mandatory?

    HI All,
    can anyonde guide me about:
    How to make the filed: "Region" in Vendor Master a Mandatory while entering the Data.
    PL.help.
    Thanks,
    Roopan.

    Hi
    Go to T-code OBD3.
    Check with account group you use for the vendor.
    Double click on the account group.
    Double click on the general data and on then on the address group. You can maintain region here as Mandatory.
    Reward if this helps
    Thanks

  • How to make lightroom 5 default instead of old version 3

    How do you make LIGHTROOM 5 default instead of old version 3?

    denone42 wrote:
    If I have a photo on my desktop and I click on it -I get option to
    open in Lightroom.
    I've heard of this, but never experienced it. For the post part, Lr opens catalogs not photos - dunno if being registered to open photos was a little mistake or on purpose..
    One thing I do know, there was a time when opening a photo with Lightroom would sometimes result in the inability to open Lightroom ever again (without some "hacking"), because it tried to open the photo as a catalog, which made it very confused and unhappy.
    My guess is: Adobe no longer supports opening photos with Lightroom (and so Lightroom 5 did not register itself to do that when installed, and so you have an old and now obsolete association), even if at one point it did - but I could be wrong.
    Sorry I can't be more help - maybe somebody else will be able to offer more insight and/or a solution.
    UPDATE: One thing that might help (if you can't get Lr to open photos how you want) - open catalog instead, then drag those photos into Lr library grid.
    Good luck,
    Rob

  • How to make a region mandatory based on some conditions using CO Extension?

    Dear All,
    I want to make Attachments region in a seeded page mandatory, based on some conditions. I am able to make fields mandatory using CO Extension, but i am not able to make the attachments region mandatory. Please help.
    Thanks
    Raj

    Raj,
    I have not tried but check if you could get the rowcount which shows how many attachment are upload or not. Then by checking this throw exception if the rowcount is o.
    Thanks
    --Anil
    http://oracleanil.blogspot.com/

  • How to make an assignment block with valuenode editable?

    Hello All,
    I have read the blog [How to display a z-table in an assignment block|http://wiki.sdn.sap.com/wiki/display/CRM/Howtodisplayaz-tableinanassignmentblock]. This all went fine. Now I have a question if it is possible to make this table editable and if so, how?
    The problem is, it is valuenode for a custom z-table, without a GUID as key. (just partner number) So making a Simple Object of my z-table doesn't work, because the default class works with GUID as key. But I also can't seem to find if it is possible to make a valuenode editable.
    I also read these blogs, but they didn't do the trick for me either:
    [CRM Web UI Technical - Creating Table View In Web UI|http://wiki.sdn.sap.com/wiki/display/sandbox/CRMWebUITechnical-CreatingTableViewInWebUI]
    [Create a Z BOL Object Part 1|http://wiki.sdn.sap.com/wiki/display/sandbox/CRMWebUITechnical-CreatingTableViewInWebUI]
    I am silently hoping that there is an easy way of making my current assignment block editable by implementing a simple Save method or something similar. I do not prefer to have to recreate my view and stuff.
    Anyone an idea?
    Regards,
    Martijn.

    Hi Martijn,
    Try this code..
    If the main entity(assuming one order entity) is editable, set the view to editable.
    DATA:      lr_entity       TYPE REF TO cl_crm_bol_entity.
      lr_entity ?= me->typed_context->btadminh->collection_wrapper->get_current( ).
      CHECK lr_entity IS BOUND.
      if lr_entity->lock( ) = abap_true.
        *me->view_group_context->set_view_editable( me ).*
      endif.
    Check this therad for setting the view context.
    Edit the order
    Hope this helps..
    Cheers,
    Sumit Mittal

  • How to make form do update instead of insert?

    I want to use the same data block in a form to do both
    inserts and updates. How can you manually tell the data block to do an update?
    The reason I want to do it manually is, I populate the block manually using a function when I want the user to
    do a data update.
    It seems like the data block is in insert mode by default. Is that true or do I have something else incorrect?
    Thanks,
    Tim

    Sounds like you are going out of your way to make this difficult for yourself.
    If I am understanding you correctly, the simplest way to achieve your goal is as follows:
    1. Create a block based on your table using the wizard including your ID columns as base-table fields.
    2. Manually add as many fields as necessary for your non-base table code/dscription fields (make sure the database item property is set to NO).
    3. Create a POST-QUERY trigger on your block. This trigger fires each time a record is retrieved from the database. So you can code a simple cursor to populate the non-base table fields.
    4. Your LOV needs to be written in such a way that it populates both the visible code/description fields and also the hidden ID fields. This will make sure that forms marks the record for update.
    5. The LOV needs to be associated with the field that the user will be typing values into (ie. the code field).
    If performance is an issue, you could also consider basing the block on a key-preserved view which will allow updates. However, I would consider the post-query approach first before getting too advanced.

  • How to make an assignment block in an overview page read only

    Hi Experts,
    We have the following requirement:
    In Campaign overview page we need to make the Partner and Product assignment block read only.
    Can this be achieved through coding or through configuration?
    Please give detail steps for the appropriate approach.
    Thanks in advance.
    Regards,
    Sayan

    Hi Leon,
    Is there any authorization group which can be customized to take care of this situation?
    For Product Assignment block in DO_PREPARE_OUTPUT method of class CL_CPGOE_AB_OVELPRODUCTS_IMPL (Component : CPGOE_ABLOCKS :: View : OVELProducts) it is checking some authority. Any pointers where those authorities are maintained will be helpful.
    Creating a new configuration is not helping as the views are 'Table View'.
    We are looking for an approach which will avoid coding or involve minimum coding.
    Regards,
    Sayan

  • How to make a corrupted block?

    Hi all,
    Is there any method to make a block corrupted in Oracle (for Windows)?
    My target is to test detecting and repairing corrupted blocks tools in Oracle.
    Thanks in advance,
    Ahmed B.

    Its not a great practice to do and oracle doesn't recommend such act. However, Oracle Support they have some internal utility for such, I dont know whether it is available to public or not. Search at metalink.
    Jaffar
    I just reaclled, there is a utility called 'bbed' which comes with oracle.
    However in UNIX you can use the dd command to corrupt a few blocks.Something like
    dd ibs=db_block_Size skip=n count=n if=/dev/null of=full_path_name_of_file_to_corrupt
    You can use the freeware hexedit to simulate block corruption in Windows.
    My sincere request is that dont do this with your production db. Use it very caciously.
    Message was edited by:
    The Human Fly

  • How to make the Region and Language | Location | Current Location selected by "country or region" selection

    Hi,
    I have built a Windows Embedded Standard 7 image that includes multiple language packs for the countries that we support.  When I sysprep this image and reboot, I am prompted for my language (a screen appears with many selections like "My language
    is English").  Once I select my language and select next, I am prompted for "Country or Region", Currency and Keyboard.  For some unknown reason the "Country or Region" selection only affects the setting under "Region
    and Language" | Administrative | "non-Unicode programs", it does not affect the setting setting under "Region and Language" | Location | "Current Location". 
    Is there a way to modify my image such that the "Country or Region" selection is used for the location setting?
    Thanks,
    Brent

    Hi,
    You can follow the content of these link below to set system location during Windows Deployment:
    Configure International Settings in Windows:
    https://technet.microsoft.com/en-us/library/hh825705.aspx
    Regional settings default to English when deploying a virtual machine using a template on System Center 2012 Virtual Machine Manager:
    https://support.microsoft.com/en-us/kb/2709539
    Windows Deployment sample OOBE.xml file:
    https://technet.microsoft.com/en-us/library/dn621901.aspx
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • How to make selection-screen block as unvisible?

    hi,
    in report program there are two selection screen blocks like this.
    SELECTION-SCREEN BEGIN OF BLOCK b1.
         parameters: rb1 as radiobutton group r1 user-command ucomm,
                  rb2 as radiobutton group r1,
                  rb3 as radiobutton group r1,
                  rb4 as radiobutton group r1,
         SELECTION-SCREEN BEGIN OF BLOCK b2.
              parameters: ip1 type string.
              select-options: date for pernr-begda.
         SELECTION-SCREEN END OF BLOCK b2.
    SELECTION-SCREEN END OD BLOCK b1.
    Now when i clicked on rb4 the selecetion screen block b2 has to be visible.
    And rest of things i.e for rb1, rb2, rb3 it should not visible. it should be disabled.
    Regards,
    Shankar.

    hi,
    i am doing like this.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text.
      SELECTION-SCREEN SKIP 1.
      SELECT-OPTIONS: pernr FOR person-pernr.
      SELECTION-SCREEN SKIP 1.
      PARAMETERS: tempname LIKE rlgrap-filename.
      SELECTION-SCREEN SKIP 1.
      PARAMETERS: rb_p1 TYPE c RADIOBUTTON GROUP r1 USER-COMMAND rbg,
                  rb_p2 TYPE c RADIOBUTTON GROUP r1,
                  rb_p3 TYPE c RADIOBUTTON GROUP r1,
                  rb_p4 TYPE c RADIOBUTTON GROUP r1.
      SELECTION-SCREEN SKIP 1.
        SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text1.
            PARAMETERS: country(25) TYPE c MODIF ID ccc.
            SELECT-OPTIONS:Fromdate FOR person-begda NO-EXTENSION MODIF ID ccc.
        SELECTION-SCREEN END OF BLOCK b2.
    SELECTION-SCREEN END OF BLOCK b1.
    AT SELECTION-SCREEN OUTPUT.
    IF rb_p4 = ' ' .
      LOOP AT SCREEN.
          IF SCREEN-NAME = 'COUNTRY'
          OR SCREEN-NAME = 'FROMDATE-LOW'
          OR SCREEN-NAME = 'FROMDATE-HIGH'
          OR SCREEN-GROUP1 = 'CCC'.
              screen-input = 0. "Disable
          ENDIF.
          MODIFY SCREEN.
      ENDLOOP.
    ENDIF.
    IF rb_p4 = 'X' .
      LOOP AT SCREEN.
          IF SCREEN-NAME = 'COUNTRY'
          OR SCREEN-NAME = 'FROMDATE-LOW'
          OR SCREEN-NAME = 'FROMDATE-HIGH'
          OR SCREEN-GROUP1 = 'CCC'.
              screen-input = 1. "Disable
          ENDIF.
          MODIFY SCREEN.
      ENDLOOP.
    ENDIF.
    Now it's making as disabled the fields which are in block B2.
    Acutually my requirement is when i ever user selects RB_P4 then only that screen has to appear. and for rest of 3 RB it should not visible. it should be invisible.
    for this wat to do....
    Regards,
    Shankar.

  • How to make JACK stop blocking /dev/dsp?

    I'm currently using JACK (with -d alsa) for my sound mixing needs. However, some of my applications use OSS exclusively. Is it possible to make JACK unblock /dev/dsp so those apps can use it when JACK is running?
    (Note that I don't need mixing of OSS applications - I just want sound to work for them.)

    oss2jack isn't really what I'm looking for (plus it's a pain in the neck) - I'd just like a way of having OSS apps run without killing JACK, no mixing necessary.
    Is it possible I might be able to get aoss to work with the JACK alsa-plugin? I've tried that, but I get no sound. Maybe I need to add something to my asoundrc?
    pcm.!default {
    type plug
    slave { pcm "jack" }
    pcm.jack {
    type jack
    playback_ports {
    0 alsa_pcm:playback_1
    1 alsa_pcm:playback_2
    capture_ports {
    0 alsa_pcm:capture_1
    1 alsa_pcm:capture_2

  • How to make Asian page layout instead of western one?

    I will be very thankful if someone knows how to solve this. I'm not interested about how I can arrange the text in Asian way but to know how I can switch the page layout in Asian reading way (right to left). I'm using western Indesign so reading and paging is now left to right.
    I hope someone can help me!

    Is your CS6 through a Creative Cloud Subscription? If it is you can download the Japanese version (and I would suggest that over the ME version for Asian languages since it supports other Asian language features).
    You should also look at World Tools Pro from In-Tools.com which is a plugin that will add many of the required features to your western version, but may not be as useful as the real thing if you do the bulk of your work in Asian layouts.

  • How to make dyanamic region

    hi dear,
    my question is. i have one department.in that that department 3 sections are there.every section 5 forms are there.
    so my qustion is i want to make as tree in left side.if i click on department it will show three section.if i click on one section it will show all forms in that perticular section and if i click on that form the form will open in the centre .again i select another form that form will open.pls help me or give me such type of application so that i can underdtand.pls pls help me out
    Thanks and regards
    Damby

    Hi Damby.
    Check out the following articles:
    https://blogs.oracle.com/workingwithadf/entry/adf-bc_master-detailtree_application
    https://blogs.oracle.com/jdevotnharvest/entry/how_to_read_data_from
    Good luck
    Juan Camilo

Maybe you are looking for

  • Is there a way to change the LUt extension form .CUBE to .cube. on export. TX

    Is there a way to change the LUt extension form .CUBE to .cube. on export with this script in photoshop For MAC: Chris Cox wrote: The file extensions are written by the export plugin.  (which incidentally has a comment that two studios wanted all cap

  • Why can't I add downloaded music to my iPod?

    I have 2000 songs on one computer and on my iPod, and 300 on another that I just purchased.  How can I merge them or get the new 300 into my iPod?

  • Printer wont print.

    The problem is that i cant print from my windows machine to my mac mini(where printer is aded(HP photosmart 8100 serie)). I can print from mac mini, but from windows it sends to mac, the mac sees it and does nothing and after a wile the file disappea

  • Transferring a logo created in Illustrator to Publisher

    I am working at an internship for a government agency and developing pamphlets for our local hoarding coalition. The only software on the work computers is Publisher. So I created the pamphlets in Publisher. Worked out okay. Then they asked me to cre

  • JAXB - Errors getting in binding the schema

    Hi! I have one xsd document that uses another xsd for list of values. First I bound the list of values xsd document and then tried to bind the original xsd. It is giving me the following error. [ERROR] length-minLength-maxLength: It is an error for b