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?
Thank you friend. It works fine.
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