Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Invalid
-
1.1.7
-
None
-
None
-
Linux Tomcat 5.5.03
Internet Explorer 7, Windows XP SP3
Description
Could not click at any Menu Items.
Error "_cmItemList[index].isDisabled is null or not object" by MouseUp over Menu.
Corrected by checking _cmItemList == null in MyFacesHack.js
Example:
function cmItemMouseUp (obj, isMain, idSub, menuID, index)
{
if (_cmItemList == null) // Check _cmItemList is not null
return;
if (_cmItemList[index].isDisabled)
return;
var item = _cmItemList[index];
var link = null, target = '_self';
................