customization of presentation vCO (hide/show settings)

Hello

I'm trying to customize a presentation of vCO workflow, so I can hide/show the input parameters to the user according to another value selected in the presentation.  The user has a string input parameter called 'Area' that is filled with a predefined list, so he can have the values X and Y. If I want to show/hide another entry during the presentation, I see that you can add a property 'Show the input parameter' and there is an icon of a pencil with the description "Help editing OGNL. Does anyone know how to build this expression to show or hide the input parameter based on the value of the 'area '?

Thank you

Juan.

Hello

Just click on the text box that contains the value of the property 'display the input parameter"(to the left of the button with the pencil icon) and type the following command:

#Zone == 'X '.

This will evaluate to true when the value of the parameter input area (#Zone) is equal to the string value 'X', thus making your second input parameter if the value of the first parameter is X visible and hidden if the value of the first parameter is Y.

Tags: VMware

Similar Questions

  • 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

  • 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!

  • Hide/show a dynamic field

    Hello

    I'm new to OFA.

    I have a requirement to hide/show a dynamic field based on the operating unit.

    So instead of hard coding UO, I use lookup.

    Now, what I've done, spread the VO and VO query added a new column to validate in relation to research and back 'n' or 'Y '.

    I created a transitional and in VORowImpl attribute. I'm valid against the newly added column VO and assigning the value TRUE or FALSE to the transitional attribute.

    and I'm on SPEL in Customizing the page.

    Now what is happening is when an existing record is asked in the page, the field is hidden/unhinden based on the given condition.

    But when a new record is created, this condition does not work.

    So I guess that the VO don't get initialized when the page is loaded? Is this the reason why the condition is unchecked in VORowImpl?

    My hypothesis is correct?

    How do I get my requirement?

    Pointers would be useful...

    Thank you

    Naren

    Hi AJ,.

    I forgot to update the thread. Reached the requirement.

    Solution,

    Created a transient VO attribute.

    Then in VORowImpl, written the code to set the transient attribute.

    Then using customization, SPELL, set the property to the item.

    It works perfectly.

    Thank you for guiding me to assign to the attribute.

    Kind regards

    Naren

  • Hide region show how to maintain the status of hide/show on send page

    APEX 4.2.1 using theme 24

    I have several areas on a single page that are defined using the "Hide Show Region" model this model defines the regions to show everything first. If a user chooses to hide a region is there a way to keep this state when the page is submitted? Example region top of page is to hide/show parent to an interactive report, below this area is a relative of region to hide/show for a tabular presentation, if the user chooses to hide the interactive report region and they enter data in the region in a table, when he clicks on save and the page is submitted the interactive report region appears and the tabular form region appears still longer down in the page and the user have to scroll down to access.  I'd rather have the page 'to remember' the State of hide/show that the user has selected for each region and keep this status when the page is sent.

    Someone has an idea how to do this?

    Thanks in advance for a suggestion to work!

    Theresas

    You have almost all the way.

    As you have probably already understood, the problem is that the code requires that regions begin closed and it will 'click' to open.  If you're one of them is already open, you have now two inverse regions.

    I think that it is better to have them both be areas closed, when the cookie should be created (we were a new cookie for that) then "click on" one you want to open and create the cookie with this region in.  From that moment of the code can continue to click on the one that was left pending.

    So, I added more code to the initial opening. I introduced the P2INIT cookie which will be set to YES the first time the page is visited.  Its only purpose is to open the region to report on the first visit.

    After that, the logic can circulate to store regions that can be opened.

    Also, I have completed the static ID of the report to better reference by name.

    Now, I have to say, if you are presenting the same data, but a game is available to edit in a tabular form, something like Page 3 would work?

    When you click on edit the grid it will hide the report and view the form in a table. When you click 'View report' he hide the form tab and view the report.

    I think it's a clean approach and the data are not queried the DB double. It also avoids the flicker of the openness of the region.  Just an idea.

    I use preferences instead of cookies.  The nice thing about the preferences, it's that they are saved in the DB for the user, so if the same user logs on to another computer or a browser preference comes with them.

    Thank you

    -Jorge

  • Hide/Show/activation/deactivation of a field conditions is adjustable in the source PDF file in Acrobat before downloading/creating a widget?

    Normally, I put all the fields, check boxes and option boxes I need using Acrobat before downloading/creating a Widget, but were never able to determine if/when in acrobat that you could potentially affect hide/show/toggle conditions.  In this way, if I ever need to make any changes to the PDF source and produce a new widget, I don't have to redo all the settings of the conditions if these fields does not change in any way.

    You can add text fields (or checkbox and radio buttons) and name these fields using the tag text, but without the brackets syntax.

    Document help Cloud | Form creation | eSign services

  • 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

  • Hide/show the Sections OBIEE 11.1.1.5

    Hello!

    I'm doing something I used in obiee 10 g but in real version, I can't.

    I found this document but I need to create more values of variable presentation, so I can't use condition = 1 or = 0, because I have 4 values...

    http://total-bi.com/2011/01/OBIEE-hide-show-sections/

    Anyone have an example with more than 2 values of "variable prompt '?

    Thank you

    Alex1 wrote:
    I do not understand the first question

    I mean the operating system where you installed Oracle BI. For example, for me, it is MS Windows Server 2008 R2 32 bit.

    Alex1 wrote:
    About second question... I see the same error...

    You have reports in a section? If Yes, then I suggest you remove and add that text.

  • 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/

  • Hide/show controls single cluster

    Hi all...

    I'm doing something, but without success...

    I have 2 groups of 20 witnesses

    1. 20 Boolean switches

    2-20 digital indicators (LDM)

    What I want to do is simple when I'm pressing one of the buttons bool I want to hide/show the digital relevant.

    If anyone can help?

    Its a bit quick and dirty, but it don't do what you want.  Digital command allows you to select the item in the cluster and boolean to enable or disable then press run.  He could have put in a loop with stop button

    Ken

  • 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);

    }

  • How to hide/show a field based on the data from more than 1 field?

    Hello.

    I'm trying to hide/show a based on the data of field2 and field3, Field1

    in fact using dynamic measurements I can only hide/show Field1 Field2-based, but I need a combination, for example:

    If field1 = 'A' and field2 = 'B', then see the field3, other hide field3

    y at - it an easy way to do it.

    I use Application Express 4.2.4.00.08

    Thanks in advance

    Dynamic action

    On the changes

    jQuery selector: #P1_ITEM_1, #P1_ITEM_2

    Condition: JavaScript

    $v ('P1_ITEM_1') == 'A' & $v ('P1_ITEM_2') == 'B '.

    Real Action: show item 3

    Action of false: hide item 3

  • How to set the initial state to hide/show buttons on opening PDF files?

    InDesign offering a wonderful object multi-state capacity which unfortunately does not work in PDF files. It took a bit of research for me to come with this information, the UI program itself gives indications that this should work. (Why not maybe another forum of discussion.)

    So, I create an interactive PDF using buttons to hide/show specific paragraphs (which are also implemented as buttons because only the buttons and forms can be hidden or shown, AFAIK).

    I've set up a PDF created via InDesign using the six control keys and seven paragraphs - one of these paragraphs is the initial state that I want to see when the document is opened. As long as the PDF file that I create is distributed, that's how it works: an initial paragraph appears, buttons can be clicked and the stuff of Heroes appears the mark.

    However, a colleague thoughtfully saved the PDF file (so it could rename something more to his liking). When he does this, he left one of the displayed subsidiary paragraphs, rather than the initial paragraph I intended... and of course, this is the version that came out to the customer.

    Question: Is there a way to set the initial state to hide/show buttons when a PDF document is opened first, regardless of the State in which he could let or saved? I guess it's sort of ON OPEN event that would allow me to define an initial state as a safety net to the way I save the original document. Obviously, the PDF AS I DELIVER IT will pave the way, I want it, but I'm trying to overcome the appearance of the Murphy's law of a document that can be re-recorded in another State. An event which OPENED on that cure.

    Thank you.

    in this case you would have been better if you had locked the PDF file in order to prevent changes ANDS record as actions...

  • Thinapped IE 7 - How to customize (home page, security zone, proxy settings,...)

    Hello

    I virtualized copy of IE 7 and it's working properly (thanks guys here in this community) but I need to customize this package with different internet settings for the homepage and the intranet zone instance. then rebuild the package and got the portable version.

    Thanks in advance.

    Here are the steps to follow:

    1. on a clean machine, open IE 7 ThinApp and make all the customizations that are saved in the sandbox

    2. to aid SBmerge utility, merge the contents of the sandbox again in the ThinApp

    For steps on SBmerge, take a look here:

    Simple steps for using SBMERGE | VMware ThinApp Blog - Articles from VMware

    Video HOWTO: using sbmerge for updating a ThinApp project. | VMware ThinApp Blog - Articles from VMware

  • Hide/show agrregates in the PivotTable based on click of a button

    Hello

    I have a PivotTable in which I view aggregates.

    Is there a way to hide/show the aggregated based on click of a button.

    Thank you

    Anil

    It worked:

    To remove totals:

    cubicEditor.removeLayer (DataDirector.ROW_EDGE, 0);

    Def LayerDefinition = new LayerDefinition("OrganizationCode");

    cubicEditor.addLayer (DataDirector.ROW_EDGE, 0, def);

    To show totals:

    cubicEditor.removeLayer (DataDirector.ROW_EDGE, 1);

    cubicEditor.removeLayer (DataDirector.ROW_EDGE, 0);

    LayerDefinition layerDef = new LayerDefinition ("OrganizationCode");

    TotalDefinition td = new TotalDefinition (AggType.SUM, "OrganizationCode", AggLocation.BEFORE);

    layerDef.setTotalDefinition (td);

    cubicEditor.addLayer (DataDirector.ROW_EDGE, 0, layerDef);

    layerDef = new LayerDefinition ("ItemName");

    cubicEditor.addLayer (DataDirector.ROW_EDGE, 1, layerDef);

Maybe you are looking for

  • To stop the list "Suggested research" which rises

    When I go on a lot of websites, a list of other "related searches" appears on the left side of my screen. I don't want this list. When I try to x it off this succeeds only 50% of the time. The rest of the time, one of the things on the list opens in

  • sleep/wake iPhone 5 replacement button

    I have a problem: on/standby button does not... According to your iPhone 5 replacement of the Sleep/Wake button program my device is eligible for this program and I bring the product participating provider. I live in Israel, and the provider here is

  • Windows photo gallery distords

    I have vista as OS and photo library distorts photos when opened. Photo Gallery Windows displays the photos lying, black and white and with horizontal lines. During the expansion of the videos in full screen, the same phenomenon occurs. Clues as to w

  • Updates to the stop.

    When I'm ready to shut down the computer, there is an option to "Install updates to update then turn off your computer." Since the installation of IE9, I have his message whenever I stop (which is several times a day) and there is always something to

  • BlackBerry smartphones, why not get OS updates on my priv

    Please Help Me.why not updated operating system on my my carrier AT & T im in Indonesia priv... Please help me. contact meE-mail: