Hide/show the region

Hello
I'm trying to change the default behavior to hide/show the region to show, after a few attempts, I got partially work but now does not work by clicking on the icon to enable/disable/hide also changed the icons and added a type = "" but his does not work. " Any help? Thanks and greetings

You can do so at the level of the model. Copy the skin and see the area to Hide and Show (show) and then modify the model. Essentially 2 thing I've changed are the image of collapse_minus.gif and style ="". My suggestion is to make a copy of the region before making any changes. It works for me in IE, Chrome and FF.







#TITLE #.
#CLOSE # PREVIOUS # ##DELETE NEXT ##EDIT ##CHANGE # CREATE # CREATE2 # EXPAND ##COPY # HELP #.
#BODY #.

Tags: Database

Similar Questions

  • Hide/show the region using the text in the list

    Hi all

    I created a list in a shared application component. Is it possible in the apex to hide and show the region according to the selected list text.

    Thank you.

    I have not used jQuery, but only if the region

    Kind regards
    Richard

  • Is it possible to detect the State of hide/show the region...

    Hello
    Is it possible to detect the State of hide / display area.

    I have three regions/hide RX, RY, RZ.
    When an EX event happens, then region RX should expand and the rest of the region collapses.

    When an event happens EY, then region RY should expand and collapse the rest of the region.
    ........
    ...

    We can use this JS on DA to change the status of a region:
    $("RX.uRegionControl").click ();
    $("RY.uRegionControl").click ();
    .....
    But, first of all, we need detect the State of where applies this da?


    I'm working on apex 4.2. Theme 25.

    Kind regards
    Fateh

    You can try this

    //example
    $('#RX .uRegionContent').is(":visible")
    // this will return boolean - true if it is expanded and false if collapsed
    
  • Automatically add delays to the ability to hide/show the bar

    I activated the option to hide/show the bar automatically. I would like it when I touch the upper part of the screen with the mouse, the menu bar will appear with some delays (2 seconds for example). First it is possible to configure the delay?

    NO, but you can offer this feature for Apple

    http://www.Apple.com/feedback/

  • Qosmio G30-126 - how to hide/show the top bar?

    How active hide/show the top bar on the upper side desk, but disappeared how can I return it again?

    You want to have some Flash cards on top of the desktop computer?
    This isn't a problem

    In all programs-> Toshiba-> Utilities-> settings for Flash cards, you can activate this option!

    Check it!

  • Possible to hide / show the slideshow captions?

    Is there a way to hide/show the captions in the slide show? I would like to make something similar to this: http://www.geschewuerfel.com/GalleryMain.asp?GalleryID=117628 & AKey = DSWC4N8C . If you click on one of the images is full screen, then the 'i' button below will reveal the legend.

    Hello

    You can try to use Lightbox composition and then insert balloon in the container box.

    In the ToolTip settings, select stacked position and transition as vertical, it would be a similar effect as you mentioned. Organize the legend, the buttons of navigation in the same area when it should appear as inline.

    Thank you

    Sanjit

  • Is there a way to hide/show the title safe area in Illustrator?

    Is there a way to hide/show the title safe area in Illustrator?

    I know that I can turn on or off by using the options of work plan, but to facilitate the workflow, I wish I could spend it power I can do using the "Cmd:" for guides?

    I know I can show/hide video leaders and I it was mapped as shortcut... but could not find a way to do the same thing with title/action safe?

    Any ideas would be appreciated?

    I am completely new to scripting, so it took a bit of trial and error, but here is one that will turn on and off for all work plans:

    for (i = 0; i

    If (app.activeDocument.artboards [i] .showSafeAreas == true) {}

    app.activeDocument.artboards [i] .showSafeAreas = false

    }

    else {}

    app.activeDocument.artboards [i] .showSafeAreas = true

    }

    }

  • Hide/show the series (online) and to redraw the map

    I created a box for each lineserie in my linechart and when you click the checkbox I hide/show the on my list.

    myChart.series [5] .visible = myCheckbox5.selected;

    It works fine but I want to redraw the map and this time he doesn't have to calculate the axis according to the values in my series hidden... Someone knows how to do this?

    I tried without success includeInLayout property.

    Found a solution for the exchange of experts, but it was difficult to finish the removal/addition of series from myChart.series and then force a new drawing by resetting myChart.series.

  • Tabular presentation - hide/show the Datepicker calendar

    Hello

    I am toggling of a column of date picker in tabular form wizard based on the value of another column in the same row, using javascript. However, I was unable to find a way to hide/show the associated calendar. Can someone tell me how to proceed?

    Thank you!

    Hello

    The structure on a tabular presentation for a date picker article, is more complicated than for a normal input field:

    <td  headers="Hiredate" class="t4data">
      <fieldset class="datepicker" id="f04_0004_fieldset">
        <table summary="" border="0" cellspacing="0" cellpadding="0" class="datepicker" id="f04_0004_holder">
          <tr>
            <td class="datepicker">
              <input type="text" name="f04" size="7" maxlength="2000" value="01/05/1981"  id="f04_0004" />
            </td>
            <td>
              <a  href="javascript:void($p_DatePicker('f04_0004','0','DD/MM/YYYY','#666666','','','','','1981','en-gb','Y','45958','1683565711731582981','05','210'));">
                <img src="/i/asfdcldr.gif" alt="Calendar" align="absmiddle" />
              </a>
            </td>
          </tr>
        </table>
      </fieldset>
    </td>
    

    While access to the input box by referencing its name attribute, it is impossible to the icon. What you need to do is find the input field, go up to the TR that contains, find indicator A in this TR and hide.

    Try something like:

    <script type="text/javascript">
    function disableDatepickers()
    {
     var f1 = document.getElementsByName("f01");
     var f4 = document.getElementsByName("f04");
     var k;
     var r;
     var a;
     for (k = 0; k < f1.length; k++)
     {
      if (parseInt(f1[k].value) < 7800)
      {
       f4[k].disabled = true;
       r = html_CascadeUpTill(f4[k].id,'TR');
       a = r.getElementsByTagName("A")[0];
       a.style.visibility = 'hidden';
      }
     }
    }
    disableDatepickers();
    </script>
    

    In this example, the first column (f01) contains an EMPNO. If this value is < 7800, I find the datepicker and disable it, then find the A tag that is in the same b and hide. Adjust the f01 and f04 accordance with column names and change the IF test to meet your needs.

    Andy

  • hide and show the region - hide by default

    Hello world
    I had a hide / show region on my page. I want to hide this default region (on each page load).
    In fact, it is open by default.
    How can I get that?
    I have tried many things, searched a lot of problems that.
    But I can not find a solution, which helped me.
    I am using a theme not Standard apex.
    Any suggestions?

    First run page using firefox or chrome and identify the name of the region, i.e. the #REGION_ID # in the model translates into something like "region5" when rendering.

    Change Page, in the section Javascript executed when the Page loads, enter the following command

    hideShow ('region5', 'shIMG5', '', '');

    This should toggle the current show / hide mode.

  • hide and show the region and pass values to the region

    I have a p_dept lov static 10,20,30 and submit button

    I have 2 areas with the name dept10, dept20

    When I select lov p_dept = 10 and submit button then see the region of dept10 (do not know how to pass values from: p_dept suggest key)

    dept10 region query is
    Select * from emp where deptno =: p_dept

    dept20 region query is
    Select * from emp where deptno =: p_dept

    Please someone help me how can I achieve it with stetp by step.

    Hello

    You can simply set the display state of your regions.

    - Edit dept10 region set condition [item / column = value]
    - Expression 1
           p_dept
    - Expression 2
           10
    

    Do the same for the dept20 region

    - Edit dept20 region set condition [item / column = value]
    - Expression 1
           p_dept
    - Expression 2
           20
    

    When you submit a page, your selected items will be defined in the session if you do not need to pass any parameter.

    Thnks

  • Hide / display the region and an interactive report showing side by side

    Hello

    I have a report and some filters (drop down list) on a page... I put my filters in a skin and see the area...

    Here is how it is implemented.


    Point of view: Page (1) template body
    20 HTML filters

    Point of view: Page Template body (2)
    10 registered report


    My problem is that the filters and the search region report side by side on the same line... tried to change regions but always get the same answer... Please advice

    Hello

    Place the two regions at the point of the screen: Page (3) template body.
    Then set filters sequence in the region to 10 and 20 report

    If this isn't what you need, please specify more how you like similar available

    Kind regards
    Jari

  • Hide/show the default region to open

    I have a skin to see the area on the page I want sometimes as default (based on the value of the page element) open 0. I added the code below to the header of the region in my area to see the skin. Worked fine, but now on all of my pages that have interactive reports on them, by clicking on the drop down arrow on the wheel lift an error 'gReport.controls is null or not an object ". Any ideas on how to get this to work on all pages?


    < script type = "text/javascript" >
    function showRegion() {}
    Alert ($x('P0_ALERT_REGION_VIEW').value);
    If ($x('P0_ALERT_REGION_VIEW').value is 'o')
    hideShow ('region5');
    }
    Window.OnLoad = showRegion;
    < /script >

    Give the 'static' for the area ID and run the page. See the #REGION_SEQUENCE_ID # that is generated for the static id that you gave. (run the page and the goto View Source and search for hideShow)

    then write as follows similar to logic

    
    

    Here are values #REGION_SEQUENCE_ID # 2

    It may be useful

    See you soon,.
    Hari

  • Hide / Show grid region loss points available

    Hi apex community!

    In Application Express 4.2.5.00.08, I have the following problem.

    Grid layout Item2 property ""Start New Row "= NO "

    Hide and show region loss presentation grid points. For example-> > > >

    Region HaS.png

    If you change the model to 'Région Standard', columns are displayed correctly

    Region Standart.png

    Someone at - it a solution or alternative.

    Thank you

    Martin

    See problems with layout themed to show/hide the region 25

    Always specify which theme you use when you ask for the layout and Visual formatting issues.

  • Hide - show the button field

    Hello

    I display the image one after the other on the screen.

    According to indext of image I want to hide show next previous button,

    How can I do?

    If (current_index == Questions.size () - 1) {}
    _btnnext.getManager (). Delete (_btnnext);
                        
    } ElseIf (current_index == 0) {}
    _btnprevious.getManager (). Delete (_btnprevious);
    } else {}
    If (! _btnnext.isVisible ()) {}
    _hfm. Add (_btnnext);
    }
    If (! _btnprevious.isVisible ()) {}
    _hfm. Add (_btnprevious);
    }

    }

    Currently, I found this solution.

    But I think there must be another way and then add and remove from view every time.

    Thanks in advance.

    bskania.

    You can do this using the setEditable method

    If (current_index == Questions.size () - 1) {}
    _btnnext.setEditable (false);
                        
    } ElseIf (current_index == 0) {}
    _btnprevious.setEditable (false);
    } else {}

    btnnext.setEditable (true);
    _btnprevious.setEditable (true);

    }

Maybe you are looking for