Disable linkbar items?

Let's say I have a linkBar whose dataprovider is a viewStack.
There are 8 children of the VS as links on the LB.
I don't want the use to click on 3-8 until I manually enable
them, after processing user feedback.
How to disable them?

Yes, I have tried setting enabled of the component in the vs
to false (s0.enabled = false;).
But the BUTTON on the linkbar still works (it navigates to a
grayed-out step). I want the button to be disabled.
Thoughts?

Similar Messages

  • How do I disable one item in a radio buttons control at run time

    I need to disable one item in a radio buttons control. At design time
    this is possible, but how do I do this at run time? Is this possible? I
    cannot find a property per item

    Use the property "Controls[ ]" - this gives you an array with references of each single button in the radio buttons control. These you can access with property nodes too.
    Hope this helps.
    Using LV8.0
    Don't be afraid to rate a good answer...

  • How to hide/disable menu items using Javascript in Acrobat 9 pro or later

    We just wanted to know on how to hide/disable menu items for e.g. 'Open' menu item under 'File' menu in Acrobat 9 or later on Mac using Javascript. It would be useful if you could provide if any other option is in place already.

    Not sure it will work, but you can try using the app.hideMenuItem() method. See reference here.

  • Can I disable an item in a combo box list?

    Hi,
    I have a combobox that is holdong a string array for the options. Is it possible to disable individual items within the String array?
    Dave.

    Why don't you create a record group and populate that record group into the list item on runtime?
    -Ammad

  • Disable line item display in KE30 Reports

    Hi,
    Has any one tried disabling line item display in a KE30 Report? Which authorization object can be used to disable the access to line items?
    Thanks for your time.
    Regards,
    SAP_CO1

    Hi,
    When you create user-defined authorization objects for reporting, all their fields will be checked when you execute a report, even if they are not used in the report. It is not necessary to have all fields in the report definition, but you will need at least authorization ':' to get the aggregated figures.
    Example:
    Authorization object contains fields WW001, WW002
    Report uses field WW001 as drilldown characteristic, but not WW002.
    To execute the report, the user needs authorization '*' for field WW001 and ':' for WW002.
    If he does not have authorization for WW001 then he can execute KE30 but cannot drilldown to line items
    For more information how authorization checks for user-defined authorization objects work, you can refer to the IMG documentation via CO-PA -> Tools -> Authorization Management ->CO-PA specific Authorization objects -> Define authorization objects for the information system.
    You may use transaction SU24 in order to check the assignment of authorization objects to transaction KE30.
    regards
    Waman

  • Java Script Disable/Enable Items Problem

    Hi,
    I followed the directions to disable/enable items from http://www.oracle.com/technology/products/database/htmldb/howtos/htmldb_javascript_howto2.html#disable.
    And I'm getting an error.
    I have fields like :
    Issue Summary
    Issue Description
    Identified By
    Identified Date
    Status (Values: Open, On-Hold, In-Process, Closed)
    Priority
    Target Resolution Date
    Whenever the Status changes to 'In-Process' I would like to disable 'Issue Summary and Issue Description'.
    Both the fields (Issue Summary and Issue Description) are being disabled when the Status changed to 'In-Process'
    but when I click the 'Apply Changes' button I'm getting the error: 'Issue summary cannot be null.'
    I do have a Not Null validation on Issue Summary field, but I'm only updating the Status field.
    Following is the JavaScript:
    In the Page Attribute (HTML Header)
    <script language="JavaScript" type="text/javascript">
    <!--
    //htmldb_delete_message='"DELETE_CONFIRM_MSG"';
    //-->
    // This function takes in:
    // 1. A string expression to evaluate. For example:
    // 'document.getElementById(\'P125_STATUS\').value=InProcess'
    // Notice the quotes are escaped using a "\"
    // 2. One or more arguments which are item ID's as strings. For example:
    // ...,'P1_ENAME','P1_SAL'...);
    // Notice the ID's are the item names, NOT item labels
    function disFormItems(testString,P125_ISSUE_SUMMARY,P125_ISSUE_DESCRIPTION){
    theTest = eval(testString);
    if(theTest){
    for(var i=1;i<4;i++){
    if (arguments){
    disItem = document.getElementById(arguments[i]);
    // disItem.style.background = '#cccccc';
    disItem.disabled = true;
    else{
    for(var i=1;i<4;i++){
    if (arguments[i]){
    disItem = document.getElementById(arguments[i]);
    disItem.disabled = false;
    // disItem.style.background = '#ffffff';
    //-->
    </script>
    In the Footer:
    <script language="JavaScript1.1" type="text/javascript">
    disFormItems('document.getElementById(\'P125_STATUS\').value==\'In-Process\'','P125_ISSUE_SUMMARY','P125_ISSUE_DESCRIPTION');
    </script>
    In the Status field HTML Form Element Attributes:
    onChange="javascript:disFormItems('document.getElementById(\'P125_STATUS\').value == \'In-Process\'','P125_ISSUE_SUMMARY','P125_ISSUE_DESCRIPTION');"
    Can somebody let me know what's wrong?
    Any help is greatly appreciated.
    Thanks in advance

    FYI: I used the following JavaScript to make it work:
    In the Header Text
    function SetReadOnly()
    var status = document.forms[0].p_t09.value;
    if(status == 'In-Process')
    document.forms[0].p_t02.readOnly = true;
    document.forms[0].p_t03.readOnly = true;
    //-->
    In the Footer
    <script language="JavaScript1.1" type="text/javascript">
    SetReadOnly();
    </script>
    In the HTML Form Element Attributes
    onChange="javascript:SetReadOnly();"
    Thank you very much for your suggestion

  • Adobe interactive form : Disabled menu item

    Hi experts,
    we recenlty satred working in Adobe iteractive form in SAP. and we are facing folllowing issues
    1)submenu item is disable (submenu item from "Layout" and "Table" is not enable)
    any solution?

    Hi Sandy,
    Thanks for Replying
    yes i am in display mode but same thing happens when i am in edit mode..
    sorry i can not go in edit mode right now as another developer is working on it.
    SAP Net weaver version - 7.31 with EHP 6.0
    ALD version :  ES2 9.0
    See below Screenshot from other adobe form
    Message was edited by: Zubin ..

  • How disable an Item

    Hi,
    Thank You to Rosario.
    Now I have a new question.
    In the 'Header' block of my form I have some Items, for example:
    TYPE_CODE Varchar2
    ANA_CODE Varchar2 etc.
    and in 'Control' block a button that execute a query.
    I need, when I push the Run button, disable the Items in the HEADER.
    In the trigger WHEN-BUTTON-PRESSED I have insert a code like this:
    Go_Block('HEADER') ;
    Set_Item_Property('TYPE_CODE',ENABLED,PROPERTY_FALSE) ;
    Set_Item_Property('ANA_CODE',ENABLED,PROPERTY_FALSE) ;
    But when I Run the Form, an error FRM-40105 is returned.
    I think that I mistake the syntax. How can resolve the problem ?
    Best Regards
    Gaetano

    Frm-40105 : unable to resolve reference to item
    You don't need to go to the Header block to run this code but you need to specify the block name in the calls to set_item_property:
    Set_Item_Property('HEADER.TYPE_CODE',ENABLED,PROPERTY_FALSE) ;
    Set_Item_Property('HEADER.ANA_CODE',ENABLED,PROPERTY_FALSE) ;

  • How to Disable an Item of OAF Standard Page through Personalization.

    Hi,
    My requirement is to disable an item of Standard Page through personalization
    so that users can't edit that field.
    I tried checking for Disable under Personalization Properties but didn't find Disable Property.
    Can any one give me an idea how to do that?
    Thanks in advance.
    Regards,
    Subramanyam.

    Hi,
    Do as suggested by Abdul Wahid.
    Please tell me which type of item is this like LOV, textbox...
    Regards,
    Reetesh Sharma

  • How to disable an item in a selectOneRadio

    Hi, I want to disable an item depending on some calculation in a selectOneRadio. Im using a spread layout and populate the selectOneRadio through selectItems... Any ideas?
    <t:selectOneRadio id="radioTypes" value="#{ucb.type}" forceId="true" layout="spread" required="true">
         <f:selectItems value="#{model.allTypes}"/>
    </t:selectOneRadio>
    <h:panelGrid>
         <%-- Radio one --%>
         <h:panelGroup>
              <t:radio index="0" for="radioTypes" id="type1" />
         </h:panelGroup>
         <%-- Radio two --%>
         <h:panelGroup>
              <t:radio index="1" for="radioTypes" id="type2" />
         </h:panelGroup>
         <%-- Radio three --%>
         <h:panelGroup>
              <t:radio index="2" for="radioTypes" id="type3" />
         </h:panelGroup>
    </h:panelGrid>The t:radio tags has no disable parameter, is there any way around this. I don't want to disable all the radiobuttons just some specific ones.
    Best Regards
    Chris

    You can use the UISelectitem#setItemDisabled method to set the item disabled status.

  • How do i disable menu items in Help manu, Photoshop cs6?

    How do i disable menu items in Help manu, Photoshop cs6?
    I packaged Photoshop cs6  using AAMEE CS6.
    I need to some menu items to disable.
    can any one please tell the process of doing , or which registries or files need to edit.
    Appreciate the immediate response.
    thanks in advance.

    Hello8
    Given the fact that you speak about AAMEE, it's not clear if you search for an automated and remote way to do it on multiple machines or not.
    (and therefore if this thread should be moved to the relevant forum, http://forums.adobe.com/community/download_install_setup/creative_suite_enterprise_deploym ent )
    To disable menu items, simply go to Edit>Menus and click on the eyeball next to the menus you do not want.
    It is then possible to save it in a workspace that by default will be located there: Documents and Settings/[user name]/Application Data/Adobe/Adobe Photoshop CS6/Adobe Photoshop CS5 Settings/Workspaces (Modified)
    I'm not sure if Photoshop will start if the default workspaces are removed, as there is an option to restore them in the preferences.
    Also, this is not customer support, but a forum fielded by volunteers that answer when they can, so inviting for an"immediate response" has no bearing; and might even have the opposite effect, but thanks for doing it in a polite and non too demanding way!

  • How to disable multiple items in menu ring?

    Hi I have a difficulty understanding on how to disable the items in the menu ring control. I need to know so that I will enable some items for the future products for testing. And why is the first item disabled? How can I disable the right items?
    Attachments:
    disabled_items.vi ‏23 KB

    Your vi works perfectly :
    you are disabling the menu items wich correspond to the elements of the 1D array :
    -if the array is empty, no element is disabled;
    -if the array contains 1 element, for instance = 3, the forth (3+1) menu item will be disabled. If the array element equal zero, then the first menu item will be disabled;
    - if the array contains 2 elements, then two corresponding menu items will be disabled, and so on...
    Chilly Charly    (aka CC)
             E-List Master - Kudos glutton - Press the yellow button on the left...        

  • Enable/disable an item in a multirecord block

    hello to all
    How is possible Enable/disable an item in a multirecord block?
    set_item_property change all instances of an item in a multi-record block
    SET_ITEM_INSTANCE_PROPERTY only affects the display
    thanks

    Hi,
    You cannot set the Enabled property in a multi-record block, instead you can change the INSERT_ALLOWED, UPDATE_ALLOWED properties. So that the user can't change the value in the item.
    Regards,
    Manu.
    If my response or the response of another was helpful, please mark it accordingly

  • Disable the Item Availability Button based on Order type and Item category

    Hi ,
    My requirement is to disable the Item availability check button in VA01 based on the Order Type & Item category. Is there any user Exits/ Badi / FM available for this.
    Thanks in advance.
    Srinivas.

    Hi,
    Although it is an old post I need to answer for people who search an answer to the same type of question. To hide a field
    you can use transaction variant 'tcode:SHD0'. But it is not based on Order type and Item category. May be you can use
    USEREXIT_FIELD_MODIFICATION form in user-exit MV45AFZZ. You can loop at screen and set screen-active = 0 in fields
    where you want them to be inactive.

  • GPO setting "Hide and disable all items on the desktop" stop applying at policy refresh

    In our organization we have the Hide and disable all items on the desktop setting enabled on our Windows 7 computers. As we are testing Windows 8.1 we have come across an odd behaviour with this setting: At log on the desktop is configured as expected: No
    Icons. But after 90 minutes, or when running gpupdate /target:user manually, the Icons appear.
    How can I make the setting stay?
    Regards/
    Johan

    Hi Johan,
    After the icons appear ,I suggest you use gpresult command to check the result.
    It seems that some setting  overrided ""Hide and disable all items on the desktop".
    Regards,
    Kelvin hsu
    TechNet Community Support

Maybe you are looking for