[#6513] Dimp Other Actions menu fails
Summary Dimp Other Actions menu fails
Queue DIMP
Queue Version 1.0-RC3
Type Bug
State Resolved
Priority 1. Low
Owners Michael Slusarz <slusarz (at) horde (dot) org>
Requester herbert (at) linuxhacker (dot) at
Created 03/21/2008 (51 days ago)
Due
Updated 03/28/2008 (44 days ago)
Assigned
Resolved 03/28/2008 (44 days ago)
Attachments
Milestone
Patch

History
03/28/2008 Michael Slusarz Comment #2
State ⇒ Resolved
Assigned to Michael Slusarz
Reply to this comment
Fixed in HEAD and FW_3.
03/28/2008 Michael Slusarz Deleted Attachment: horde3.2-rc3-dimp-other-actions-trace.png
 
03/21/2008 herbert (at) linuxhacker (dot) at Comment #1
New Attachment: horde3.2-rc3-dimp-other-actions-trace.png
Patch ⇒
Milestone ⇒
Queue ⇒ DIMP
Summary ⇒ Dimp Other Actions menu fails
Type ⇒ Bug
Priority ⇒ 1. Low
State ⇒ Unconfirmed
Reply to this comment
I get a "value has no properties" error if i click the ''Other Actions'' field, for example in the Inbox. I try to take a stack trace - see the attached screenshot. My workaround to get the ''Other actions'' menu: I insert a break after the line 619 in dimp/js/src/DimpBase.js:

    case 'ctx_otheractions':
      break; //Straub
      elts = $('oa_seen', 'oa_unseen',
          oa_flag','oa_clear', 'oa_sep1',
         'oa_blacklist',   
          oa_whitelist', 'oa_sep2');
       if (this.viewport.getSelected().size()) {
         elts.invoke('show');
       } else {
         elts.invoke('hide');
       }
       break;
    }