Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
2070
After clicking a disabled dropdownitem in WebDropDown it gets enabled
posted

Hi,

I am using WebDropDown in my application, i have disabled my dropdownitems for some reason. After i click the disabled menu item,it gets enabled once again. It is not completedly disabling. 

Can any one help me?

  • 24671
    Verified Answer
    posted

    Sridhar,

    The item stays disabled, it's not getting enabled again. It's just that the visited style for the item's link gets applied, that's why you think it's being enabled. You can see that even if you click , the item is not being selected. In order to avoid this issue, you can add the following in your ig_dropDown.css:

    .igdd_ListItemDisabled a:visited

    {

    color: #BBBBBB;

    cursor: default;

    }

    And you will not be experiencing this issue. I will also make sure it's fixed in the default stylesets.

    thank you,

    Angel