Browser Version: IE11.0.9600.17501
Platform: Windows 7, 64x
SC Version: : v9.1p_2014-04-08/PowerEdition Deployment (built 2014-04-08)
Steps to reproduce: Load the sample (I used isomorphic/system/reference/SmartClient_Explorer.html#replaceStyle). Click on the menu. It shouldve disabled itself but it still looks like it is enabled. If you try in another browser besides IE11, (eg firefox or chrome), when you click on the menu, it turns gray.
Platform: Windows 7, 64x
SC Version: : v9.1p_2014-04-08/PowerEdition Deployment (built 2014-04-08)
Steps to reproduce: Load the sample (I used isomorphic/system/reference/SmartClient_Explorer.html#replaceStyle). Click on the menu. It shouldve disabled itself but it still looks like it is enabled. If you try in another browser besides IE11, (eg firefox or chrome), when you click on the menu, it turns gray.
Code:
isc.MenuButton.create({ ID:"enableMenuSimple", canFocus:true, title:"Enable Simple", cwIconSpacing:6, showDown:false, showFocused:false, showEmptyMessage:false, showRollOver:false, autoFit:true, baseStyle:"myHighGridCell", align:"top", showMenuButtonImage:false, click:function(){enableMenuSimple.setDisabled(true);} }) .myHighGridCell, .myHighGridCellDark { font-family:Verdana,Bitstream Vera Sans,sans-serif; font-size:11px; text-overflow:ellipsis; color:blue; border-bottom:1px solid #ffc0c0; border-top:1px solid #ffc0c0; background-color:#ffc0c0; } .myHighGridCellDisabled{ color:grey; }
Comment