DnD activation

I have a Jtree with an installed transferable. It works great there is only 1 problem. I have to click twice on the node to initiate the transfer. I think it is because there is a MouseAdapter installed on it.
Any ideas on this?

thanks for the info, It is indeed the bug I ran into. the 'Simon' code for JTree is far from complete and it looks like I am entering a whole new world of pain in finding a solution for this.
Does anybody have a complete DragTree class he would like to give away :)
Ron

Similar Messages

  • Line Monitoring a single extension that has DND active

    Hi Guys,
    I am trying to monitor the DND state of a single extension. Monitoring  of ringing, on a call, or on hold state works pretty well, but  monitoring of DND state still shows the extension as available.  Is there a way we can monitor the DND state of a single extension, so  that it can notify the user that the particular monitored extension is  on DND state.
    Can someone help on the issue.
    Regards
    Shivam

    Well, for monitoring of a state you need state information supplier. You didn't revealed what device we are speaking about, but SPA5xx phone didn't supply such kind of state information by self. There is no solution unless you will move the DND logic from phone to PBX (and the PBX become state information supplier for you).

  • How to disable DND on Cisco IP Phone 303

    Hi there!
    I want that none of the user to use DND?
    Can i do this from WEB-ADMINISTRATION page of IP PHone?
    let me know?
    Regards!

    Yes, DND activation can be disabled from phone's WWW UI.

  • Spa508 dnd can't tell its active

    I have several ip phones spa303, spa525 and spa508
    On the spa508 when the dnd is active there is no notification on the screen.  The only way to know its on is to hit the > button to see if it says -dnd on the second page
    On the spa303 and the spa525 when DND is on there is a large message on the screen saying "Do Not Disturb", how can I make the 508 show that dnd is on?
    Sage

    It seems you use almost same solution as our current.
    DND status/logic is stored/implemented on PBX (not phone), DND softkey is disabled. One of line keys is used instead of it here. BLF is used to show the DND status (green/red color), SD on same button allow us to toggle the status ('speed dial' of supplemental service code 'toggle DND status').
    Starting with 7.5.3 firmware, the custom soft-key (PSKn) may be used for such task as well (look for keyword 'ext2=' within SPA50xG firmware 7.5.3 release notes). But I didn'd tried such approach yet.
    I never reach success with synchronisation of internal phone state and PBX state (with Asterisk). It's possible to configure internal DND soft-key to dial vertical service announcement code when pressed, but it's one-way unreliable synchronisation. Internal phone state change even in the case the PBX reject's such change. Even worse, such loose one-way sychronisation is implemented the mad-way, because it work with soft-key only. If user decided to change DND status by other mean (for example via phone's menu) the vertical service announcement code is not dialed, so phone and PBX state become dissynchronised.
    Unfortunately, there is almost no documentation related to synchronisation of phone and PBX state from Cisco. To be exact, there is almost no documentation related to SIPB services at all, so unfortunate network designers like me depends on reverse-engineering of phone's behavior ...

  • Can't create an ExecuteWithParams activity in a bounded task flow

    I'm trying to replicate the application in the demo, Passing Parameters to a TaskFlow on the URL - http://www.youtube.com/watch?v=3cklxe1qq5I
    I created a ViewObject named PagerByLastName which has an iterator with the generated name, PagerByLastName1Iterator
    (in Data Controls, a node is created for PagerByLastName , named PagerByLastName1
    PagerByLastName1 has query with a parameter and binding variable for the parameter.
    Next, I created a bound task flow and tried to drop an ExecuteWithParams from within PagerByLastName1 onto the bounded task flow.
    However, in the Edit Action Binding dialog that opens, the Data Collection section is read-only and I'm unable to select a data collection to create
    the ExecuteWithParams activity.
    A warning message appears as I try to drop ExecuteWithParams -
    "WARNING: IteratorNameNotFound--AppModuleDataControl1.PagerByLastName1"
    However, the iterator name should be PagerByLastName1Iterator
    Known issue? Is there any workaround?
    Product Versions:
    Oracle JDeveloper 11g Release 1 11.1.1.4.0
    Studio Edition Version 11.1.1.4.0
    Build JDEVADF_11.1.1.4.0_GENERIC_101227.1736.5923
    Copyright 1997, 2011 Oracle and/or its affiliates. All rights reserved.
    IDE Version: 11.1.1.4.37.59.23
    Product ID: oracle.jdeveloper
    Product Version: 11.1.1.4.37.59.23
    Thanks,
    John

    Shay Shmeltzer wrote:
    What do you mean when you say:
    created a ViewObject named PagerByLastName which has an iteratorA view object should have a query in it with a bind parameter.Correction, I saw in the Data Bindings source an iterator is generated for the ViewObject .
    The ViewObject does have both a query and bind variable defined for the parameter in the query.
    The query is
    select BEEPER, FIRST_NAME, MIDDLE_NAME, LAST_NAME, OUN from PERSON_ALL_V4 where ( ( ( UPPER(LAST_NAME) LIKE UPPER('%' || :lastname) ) OR ( :lastname IS NULL ) ) ) and cyber_status='Active'
    lastname is the bind variable
    I DnD the ExecuteWithParams node to the task flow and the Edit Action Bindings dialog opens, but I cannot select a data collection, the collections are collapsed
    and can't be expanded.
    Edited by: JWB on May 23, 2011 4:55 PM

  • DnD-NEED HELP!!!

    Hi,
    I am trying to move one panel(1) inside another one -
    panel(2) with DnD. I think that everything works good, but only one problem. Can't change positioning (x,y) of panel(1) inside the panel(2). I am trying to use MouseMotionListener-mouseDragged(), but no help.
    May be I am doing something wrong. How to coonect action of MouseMotionListener with DnD.
    Here is my code.
    class DNDPanel extends JPanel implements
    DropTargetListener, MouseMotionListener {
    int x;
    int y;
    public DNDPanel() {
    super();
    setBackground(Color.black);
    setLayout(null);
    add(new DraggablePanel()).setLocation(x, y);
    addMouseMotionListener(this);
    DropTarget dt = new DropTarget(this, this);
    public void mouseDragged(MouseEvent e) {
    x = e.getX();
    y = e.getY(); // I think that problem hides somewhere here.
    public void drop(DropTargetDropEvent dtde) {
    if(isValidDragDrop(dtde.getDropAction(), dtde.getCurrentDataFlavors())) {
    dtde.acceptDrop(dtde.getDropAction());
    try {
    Transferable xfer = dtde.getTransferable();
    Object obj = xfer.getTransferData(MyFlavors.draggablePanelFlavor);
    if(obj instanceof JComponent) {
    add(new DraggablePanel()).setLocation(x, y);
    // or here???
    revalidate();
    catch(Exception exc) {
    System.err.println(exc);
    exc.printStackTrace();
    dtde.dropComplete(false);
    else {dtde.rejectDrop();}
    class DraggablePanel extends JPanel implements DragSourceListener,
    DragGestureListener,
    Transferable {
    public DraggablePanel() {
    super();
    setBackground(Color.red);
    setPreferredSize(new Dimension(100,100));
    setBounds(0,0,100,100);
    JButton button = new JButton("Beep");
    button.addActionListener(new ActionListener(){
    public void actionPerformed(ActionEvent e){
    Toolkit.getDefaultToolkit().beep();
    add(button);
    DragSource ds = DragSource.getDefaultDragSource();
    DragGestureRecognizer dgr = ds.createDefaultDragGestureRecognizer(
    this, DnDConstants.ACTION_COPY_OR_MOVE, this);
    Thank you. I really need HELP!
    DM.

    Hi Dimitry,
    I've had that DnD plugin working since Beehive 1.5.x. As Manish says, it may depend on your FF version, also this extension only works when you are drafting your email in a window within the Zimbra frame (keyboard shortcut "c" to create new mail) NOT a floating windows (keyboard shortcut uppercase "C"). In the first case the following will be displayed under the subject field:
    "Совет. Перетащите файлы с рабочего стола для добавления вложений к этому сообщению."
    Hey check that out I got it in Russian ;o), though intrerestingly, none of the aforementioned key board shortcut work, must be my French keyboard...
    Here is an example of the command line we recently used to ensure it was activated:
    beectl add_preference_property set prfs=ZimbraDefaultUserPreferences,enpr=MyCompany name com_zimbra_dnd> type string value TRUE
    hth
    David

  • DND not recognizing scheduled hours

    Hi, everybody.
    2013 has scrambled my iPhone, which apparently can't read the time anymore. I have my DND set from 03.00 am to 11.00 am, and it's 2 pm as I am writing this and DND is still on. I checked, the feature is turned off and only the scheduling is active. No matter what times I have there, DND is still active, unless I turn scheduling off.
    I assume is a software issue, but I am using latest software with my iPhone 4S. It worked fine until the new year and my boyfriend's iPhone works fine...
    Do any of you have the same issue?
    Thanks!

    John Galt wrote:
    Sirfoxelot wrote:
    Apple never give an official response.
    Official response here:
    iOS 6: Do Not Disturb mode stays on after scheduled time
    It will go away after January 7.
    Ah ok, so they've given an Official Response. Hoping it will go away
    Last year we had the Alarm fault
    This year we had the DND bug
    Doe anyone know what Apple have planned for New Year 2014?

  • DND button is unavailable when pressed

    We have IMPA installed on our CCM 3.3(4) and when you try to use the DND button on the managers phone, you get the message "That key is not active here"

    Are you saying that the phone itself cannot issue the command from the softket to activate DND? I assume you are speaking about the IPMA Assistant console and that you have to use it to run IPMA commands

  • Control DND in CUCM 6.0

    I want obtain and modify the DND status of an IP Phone programatically in CUCM 6.0.
    Does anybody know if there is a way to do this?
    Thanks in Advance.
    Jose Padilla

    TAPI and JTAPI support getting and setting that status, and dynamically (meaning it can be activated/deactivated on the fly without the phone needing to perform a soft reset).
    AXL also supports it (getPhone, updatePhone) - and while I have tried it (it works at least as far as the DB is concerned) I didn't have a phone connected to see if it needs a softreset.. but in my experience with setting other dynamic states via AXL, AXL isn't the proper technology if you need changes on the fly and have them applied rapidly (e.g. if you want to disable the ringer.. if you do it via AXL the phone will make a softreset and it's only applied after the softreset, whereas when doing the same via JTAPI the change is immediate and there's no soft reset of the phone).
    Did you miss the section on DND in the "what's new and changed in ccm6" in the ccm6 release notes? I know DND support is mentioned there.

  • Error while activating a routine  "no object list"

    hi
    I am getting a error while activating a routine Rv50c601
    "There is no object list for INCLUDEs"  Please suggest on the error and resoulution
    regards
    Nishant

    Try running program RV80HGEN.
    Regards,
    Naiimesh Patel

  • Malicious or not? Message popped up: Mozilla security found (something like too much, forget exact word) activity on your computer so it will do a fast scan of system file. With OK button.

    I was looking at youtube.com, which always tells me my browser is not supported and recommends I download Firefox, but that is what I was using, so I went to Firefox to check for updates. (I think I also had freecycle.org open.) Then this message popped up in a new page: Mozilla security found (something like "too much", forget exact word) activity on your computer so it will do a fast scan of system file. There was an OK button. The page address was: http://update17.stegner.ce.ms/index.php?Q7Lhl9ShbRxGJXpkM1VLSi4ZE8H4pTedoVPySgeppM3VpC+thEspcFG7qxHgn1pdsC2h5ygPGWI3t5hXqMzL9EQaZZ3J1e3CKXgCb0Qp. I did not click OK but copied the link and closed the window which closed the internet. I have never seen this before and would like to know if it is really Mozilla or possibly something malicious. Thank you.

    Good catch. That almost certainly is an invitation to download malware.
    There are a lot of infected web sites pushing "fake antivirus" software. If you have any doubts about whether your system might have become infected, you can supplement your regular security software with these two highly regarded scanners:
    Malwarebytes Anti-malware : http://www.malwarebytes.org/mbam.php
    SUPERAntiSpyware : http://www.superantispyware.com/

  • Error while Activating update rule in BW

    Hi,
    I am getting an ABAP dump while activating an update rule. The rule is from DSO to cube.
    "MESSAGE_TYPE_X" " "    
    "%_T020N1" or "%_T020N1"
    "INSTANTIATE"           
    I have added some new fields in a DSO. The rule is from DSO to cube. While activating it, I am getting this ABAP dump. There are few other rules from this DSO to other DSO which got activated but this one is causing dump.
    Any ideas/suggestions on this would be really helpful.
    Thanks,
    Naveen

    Hi
    Check if your Cube , DSO and UR's are active. If not reactivate them. Ideally you could recreate the UR's and check the status by running the extraction.
    I would also recommend to use elimination method to check if any particular field is creating an issue. While recreating the UR's , create them for a few fields - active - check extraction - this will also let you know if the issue is within any oif the rules.
    Cheers
    Umesh

  • SharePoint Foundation Active Directory Problem

    Hey,
    I have a problem with the Active Directory connection to SharePoint Foundation.
    My Situation looks like this:
    I'm working on a kind of project controlling plattform. Each of our customers has its own site. Also each customer has an account in our Active Directory. For the administrative part, we have a list which contains some infos of the customer, the url to its
    site and the contact person.
    I wrote an import-script which creates a site and a new item in the list. To put the contact person in the list-item, I use a code-snippet like this:
    try
    user = web.EnsureUser(loginName);
    catch (Exception ex)
    throw new Exception("LoginName " + loginName + " not found");
    Now the problem is, that the try/catch block fails too often which means: SharePoint doesn't know the loginNames of some of our customers.
    Why does SharePoint not know maybe 1/5 of all our customers? All of them have an account in our active directory, none of them ever logged in the SharePoint (at the time they even doesn't know, that they have a SharePoint site for this project).
    I searched the internet for the problem but all I found where questions related to the synchronization of ad-properties to SharePoint Foundation. But I don't want to sync the phone-number or something like that - I want SharePoint only to know all the loginNames
    of our customers, not only 1/5 of them.
    How do I achive this, what am I doing wrong?
    Thank you!

    web.EnsureUser has nothing to do with the UPS at all. This has nothing to do with synchronisation (it does have a role but it's a maintenance one and nothing to do with authentication.
    The simplest answer is that the login names are being entered wrongly. Having said that there are a few areas you can look at to try to identify the problem:
    Does it fail repeatedly for the same username? Can you add that user to the site manually using a people picker control and if so will the script work afterwards? Are there any trends in the user accounts that SharePoint cannot find?

  • I have had my IPAD2 for quite a while but haven't activated my cellular data for about a year.  I am now trying to activate and when I go to cellular data, turn it on and try to tap view account i just get a message that says "connection to server lost".

    I have had my IPAD2 for quite a while but haven't activated my cellular data for about a year.  I am now trying to activate and when I go to cellular data, turn it on and try to tap view account i just get a message that says "connection to server lost".  I could swear the last time I used cellular data you would see the signal in the upper left corner and I only see "no service" there, I am in a location where I know I should have service.  Is there something I should do to my IPAD?  I tried resetting, I tried clearing cookies and history in Safari (after reading a post n these discussions).  I don't know what to do next. My IOS version is 6.1.3.  I did go into Network from the general tab and I see it says "SIM not provisioned".    HELP and Thank you in advance.

    Hello Theresa818,
    Thank you for using Apple Support Communities!
    It sounds like the cellular data will not activate for some reason on the iPad.
    I found this article that will help you resolve this issue here, named iPad (Wi-Fi + Cellular Models): Troubleshooting a cellular data connection, found here http://support.apple.com/kb/TS4249
    Check for a carrier settings update.
    Update your iPad.
    Toggle the Cellular Data setting off and on under Settings > Cellular Data.
    Restart your iPad.
    Tap Settings > General > About. Locate the Carrier entry and make sure that your carrier is correct.
    If your SIM card has SIM PIN enabled, try turning it off: Tap Settings > Cellular Data > SIM PIN.
    Make sure you're in an area of good coverage. If the cellular data connection works in another area, contact your carrier to report the original affected area.
    Reset network settings: Tap Settings > General > Reset > Reset Network Settings.
    Restore the iPad as new.
    If none of the above steps resolves the issue, make an appointment at an Apple Retail Store, contact your carrier, or contact AppleCare to troubleshoot further.
    I know you may have done one or two of the steps here, so you can skip those.
    Take care,
    Sterling

  • Customer activity

    Where in SAP can I see all the transaction activity for a particular business partner?  Open and closed transactions...invoices, credit memos, payments etc...etc...

    Hi,
    Exactly as Gordon directed  but will want to add that when you drill down to the BP Account balance the transactions you will see by default  would be the Open transactions created from the "Posting Date From" specified. As such, you will have to define the number to transactions you wish to view and the also indicate if you'll want to see reconciled transactions.
    Thank you.
    John

Maybe you are looking for

  • MSI K8N SLI and Athon 64 X2 4200+: some problems

    Hi from France I've try to upgrade my computer all day long, and still have no solution about this.. Mainboard: MSI K8N-SLI Processor: Athlon 64x2 4200+ RAM: CORSAIR 1Go *2 PC 3200 Graphic card: MSI X1950 Pro 256 Mo Radeon 2 HD (WD 250 Go and WD 160

  • How vulnerable is my system preferences?

    I just upgraded to 10.3.9 from 10.3.8. I noticed that if I lock a system preference pane (little lock in lower left corner), it will be unlocked the next time I boot my computer or do a restart. Is this normal? My concern is with the System Preferenc

  • ImageIcon won't appear on JButton

    I can't figure this out. Whenever i try to make JButtons with images on them the JButtons appear blank. But line 2 is System.out.println(temp.isFile()); and it always prints out true and whenever I use an image from examples of people making imageico

  • Apple logo constantly blinking, cannot open itunes or use phone at all

    Please tell me how to fix this issue without losing my contacts, media, data, etc. I would prefer not to restore my phone to factory settings. I have a 3GS, not jailbroken, have had it for about a year and a half. I can't even turn the phone off or o

  • Servlet's onMessage method in SOAP

    Hi, When I call a servlet which has an onMessage(SOAPMessage m) method from a client program, I get the 405 Error. The call returns to the client with an Exception saying that the post method is not implemented by the servlet. What should be done ? I