Mouse event not fires on drag and drop

Please
Can any one help and give any idea during draging(drag drop) mouse over of a button does not fires. I have a list of thumb in which I want to drag and drop the thumb at any location for reordering the thumb but due to  lot of item in list need to sscroll list.  I have my own custom scroll on button mouse over but when Item is dragging  mouse event does not fires.
Thanks in advance,
Premkant

Hi there,
Reject caption shows up when an unacceptable source is dropped on a Target. To configure the 'Accept criteria', select a drop target, Click on the 'Accept' button, Deselect the checkbox corresponding to the unacceptable source. (As shown below)
Now whenever the user drops 'Unaccept' source on top of the target, the 'Reject' caption shows up.
Thanks,
Nimmy Sukumaran.

Similar Messages

  • Setting up playlists in iTunes, will not let me drag and drop

    I have transferred all my music to a different computer, but now will not let me drag and drop to create playlists

    drewtxnc wrote:
    I have transferred all my music to a different computer, but now will not let me drag and drop to create playlists
    Drew,
    Are you sure that those are regular playlists (music note symbol) and not smart playlists (gear symbol)?  Smart playlists populate themselves according to their rules, and you cannot drag songs into them.

  • TS1363 my itunes will not let me drag and drop any music into my library

    i have reinstalled my itunes and and restarted my computer and nothing is working

    drewtxnc wrote:
    I have transferred all my music to a different computer, but now will not let me drag and drop to create playlists
    Drew,
    Are you sure that those are regular playlists (music note symbol) and not smart playlists (gear symbol)?  Smart playlists populate themselves according to their rules, and you cannot drag songs into them.

  • I have transferred music to new computer and trying to set up playlists and will not let me drag and drop

    I have transferred my music from old iPods to a new computer. I am trying to set up new playlists and it will not let me drag and drop. I have also tried clicking on song and does not give me option to Add to Playlist. Do you have any suggestions?

    I Have a similar problem losing the ability to drag and drop MP3 sound files since new iTunes and Yosemite. Any ideas please?

  • Datagrid not refreshing after drag and drop

    Please help me solve this: my datagrid DOES refresh itself,
    but only after the SECOND drag and drop.
    Here's an example of my datagrid :
    1. Label a Description a
    2. Label b Description b
    3. Label c Description c
    When I drag the third row to the top of the datagrid, I want
    to see updated row numbers like this:
    1. Label c Description c
    2. Label a Description a
    3. Label b Description b
    But I see this
    3. Label c Description c
    1. Label a Description a
    2. Label b Description b
    Now let's swap rows 2 and 3; now the datagrid will correctly
    show 1. in the first row! (Of course 3. and 2 are messed up until
    the next drag and drop).
    1. Label c Description c
    2. Label b Description b
    1. Label a Description a
    As you can see, row #1 is now correctly displaying "1." This
    is happening only after the second drag and drop occurs.
    Here's my strategy:
    1. I'm using a datagrid with an ArrayCollection as the
    dataprovider.
    2. The datagrid uses the dragComplete event to call a
    function (function shown below).
    3. This function uses a loop to update the property GOALORDER
    of each row in the ArrayCollection
    4. This function also creates an object of new GOALORDER's to
    update the database (this part is working fine).
    I've noticed somewhere in the docs that, when a datagrid is
    experiencing multiple changes it turns on
    ArrayCollection.disableAutoUpdate automatically. IS THIS TRUE? This
    could explain why my datagrid does not immediately refresh.
    Is there some way to drag and drop, update the
    ArrayCollection, and refresh the datagrid- in that order?
    Thanks!
    Here's the misbehaving function!
    // re-sort the list NOTE first index=0, first goalorder=1
    private function reSort():void
    var params:Object = new Object();
    params.DBACTION = "reorder";
    var i:int;
    var g:int;
    for (i = 0; i < acGoals.length; i++)
    g=i+1;
    // replace GOALORDER in ArrayCollection
    var editRow:Object = acGoals
    editRow.GOALORDER = g;
    acGoals.setItemAt(editRow, i);
    // create multiple entries to edit database
    params["GOALID"+g]= acGoals.getItemAt(i).GOALID;
    params["GOALORDER"+g]= g;
    params["rowsToUpdate"] = g;
    //HTTPService to
    hsGoalAction.send(params);

    Fateh wrote:
    I just forgot to make the event scope of the dynamic action LIVE...and that the <tt>font</tt> element has been deprecated since 1999 and now does not exist in HTML?

  • Select All in a table does not work for Drag and Drop

    Hi. I am using Jdeveloper 11.1.1.2 but have also reproduced in 11.1.1.3.
    I am trying to implement drag and drop rows from one table to another. Everything works fine except when I do a Select All (ctrl-A) in a table, the table visually looks like all rows are selected, but when I try to click on one of the selected rows to drag to the other table, only the row I click on is dragged.
    I tried setting Range Size -1, fetch mode to FETCH_ALL, content delivery to "immediate" but nothing works.
    I even have reproduced not using a view object but just a List of beans with only 5 or 10 beans showing in the table.
    Does anyone know how to get Select All to work for a Drag Source?
    Thanks.
    -Ed

    Frank-
    OK, thanks for looking into that. I also submitted this service request, which includes a simple sample app to demonstrate the problem:
    SR #3-2387481211: ADF Drag and Drop does not work for rows in table using Select All
    Thanks again for the reply.
    -Ed

  • NamedViewCriteria not working when drag and dropped as filtered table.

    Using JDev 11.1.2.1.0.
    I'm attempting to use NamedViewCriteria more and more because, well ... I keep reading it's the way to go. But I'm encountering an aggravating problem. I can't get them to work when I drag and drop as a filtered table onto a page. They work when I apply them in a managed bean, but simply dragging and dropping will not trigger the NamedViewCriteria to display the filtered items correctly.
    Creating a where clause manually works fine.
    Manual Where Clause & drag and drop ViewObject from data control
    (:pBpKey is null or upper(BP_KEY) like '%' || upper(:pBpKey) || '%') AND CinderBusinessPartners.BP_TYPE = 'C'NamedViewCriteria & drag and drop from ViewObject's NamedViewCriteria from data control
    ( ( (CinderBusinessPartners.BP_KEY LIKE ('%' || :pBpKey || '%') ) AND (CinderBusinessPartners.BP_TYPE = 'C' ) ) )There are three problems:
    1) The query pulls back all items. It doesn't retrieve only where BP_TYPE = 'C'.
    2) It is case sensitive. i.e. Enter in A will not pull back the customer Wal-Mart because Wal-mart contains lowercase a's.
    3) If I set the table's "Show Filter" attribute to true, the filter has the text "\*pBpKey\*" filled in by default. uhhh What?
    In the NamedViewCriteria's "UI Hints" tab, I have the "Query Automatically" checkbox selected.
    Any ideas why the NamedViewCriteria isn't "just working"?
    I'll be back with pictures after the break.
    Will

    I've rolled this into a bug post as seen here: BUG: NamedViewCriteria drag and drop as table SNAFU
    Pictures:
    Here is the NVC query
    http://www.williverstravels.com/JDev/Forums/Threads/2381120/Nvc1.jpg
    Here's that dang extra bind variable!
    http://www.williverstravels.com/JDev/Forums/Threads/2381120/Nvc3.jpg
    And just because I like awesome Paint.Net art.
    http://www.williverstravels.com/JDev/Forums/Threads/2381120/Nvc2.jpg
    Hope this helps someone down the road.
    Edited by: LovettWB on Apr 26, 2012 1:59 PM

  • On Reject caption not appearing in Drag and Drop interaction

    Hi
    I am playing around with drag and drop interaction to understand its functionality.
    I noticed that we can set Accept, Reject, and Hint captions to individual drop targets. When I tested it, I got the Accept and Hint captions as expected. But I am not getting the Reject caption even when I place the wrong source on the target.
    What am I doing wrong?
    Sreekanth

    Hi there,
    Reject caption shows up when an unacceptable source is dropped on a Target. To configure the 'Accept criteria', select a drop target, Click on the 'Accept' button, Deselect the checkbox corresponding to the unacceptable source. (As shown below)
    Now whenever the user drops 'Unaccept' source on top of the target, the 'Reject' caption shows up.
    Thanks,
    Nimmy Sukumaran.

  • Hand cursor not showing on Drag and Drop interaction Submit button

    Does anyone know why the hand cursor doesn't show when I hover over the submit button on a drag and drop interaction slide created in CP7 and published as HTML5?
    Many thanks.

    Thanks @rickhumpries86. What I did was I narrowed the problem down to a text animation. I only left 2 elements on the stage:
    1) A button
    2) A text animation (a plus sign)
    In this first picture of the stage, the problem exists. The frame of the + is indicated but is not overlapping the button.
    How I corrected it was I had to move the text animation up about 9 times (Ctrl + up arrow) to the position indicated in this next screen shot. Then there was no interference from the + text animation. For the animation I used the Disperse effect. To get the + sign that large, I used Arial size 72 font. So I'm not sure if this is considered a bug, or there is something else that I'm not understanding about the interaction of the text animation and its affect on the stage to other elements.

  • I cannot transfer purchased music from pc to iphone 4. Will not let me drag and drop.

    I purchased an album and downloaded to my itunes on my pc. I cannot get it to transfer (copy) to my iphone 4. It will not drag and drop nor will it copy and paste. Any solutions.

    You sync it as you do everything else.
    Open itunes, connect iphone, select what you want to sync, sync.
    If you want to drag and drop you would have to select manually manage music.
    Maybe you should read the manual.

  • IMovie is not letting me drag and drop transitions, music, text boxes. Worked fine all along and now nothing. What happened?

    iMovie has always let me "drag and drop" transitions, music, text boxes etc into my Project. This morning it is not allowing me to "drag and drop" anything. This is for a client and I am so frustrated. What happened to make it stop letting me "drag and drop"?

    I have only dragged Titles to the project. When I did, it worked best not to drag and release onto the video strip (like with the old version) but just above the strip. When you drag and hover above the strip you get a little pointer to the starting point on the strip. Hope this helps.

  • I can not move or drag and drop my albums anymore.

    For some reason, iPhoto will not let me manually rearrainge anymore.  When I try to drag an album, it only gives me the option to start a new folder.  Anyone else notice this in 11?

    Make a temporary, backup copy (if you don't already have a backup copy) of the library and try the following:
    1 - delete the iPhoto preference file, com.apple.iPhoto.plist, that resides in your
         User/Home()/Library/ Preferences folder.
    2 - delete iPhoto's cache file, Cache.db, that is located in your
         User/Home()/Library/Caches/com.apple.iPhoto folder. 
    Click to view full size
    3 - launch iPhoto and try again.
    NOTE: If you're moved your library from its default location in your Home/Pictures folder you will have to point iPhoto to its new location when you next open iPhoto by holding down the Option key when launching iPhoto.  You'll also have to reset the iPhoto's various preferences.
    NOTE 2:  In Lion and Mountain Lion the Library folder is now invisible. To make it permanently visible enter the following in the Terminal application window: chflags nohidden ~/Library and hit the Enter button - 10.7: Un-hide the User Library folder.
    OT

  • Can not re-order (drag-and-drop) items in Google My Maps

    In Google's "My Maps" there is a column on the left hand side of all of your locations. In the Edit mode, you should be able to drag them to re-order them. This works fine in IE, Chrome, etc. And it WORKED prior to Firefox 4.
    It DOES NOT WORK in Firefox 4.
    I would like to know why.
    Thanks

    Hi,
    Check Finder>Preferences>Sidebar, is it checked there to show external drives?

  • Windows 7 Home Premium 64 bit.  I have iTunes 11.0.1.12 installed.  iTunes is not letting me drag and drop folders or files to the library.  iTunes also will not add songs by using the Add folder to library option.  I can only add songs individually.

    Any help would be appreciated.  Nothing obvous seems to work.  Very frustrating.

    I don't have a Recently Added playlist.  However, I discovered that the file I had named Eating Healthy was given the name You Can Enjoy Eating Healthy when it copied to iTunes.  I'm guessing iTunes pulled the full name of the piece from the internet.  Upshot--the mp3 did transfer to iTunes on all 3 tries, but I was looking in my alphabetized list under E, not Y, so I didn't see it there.  Thanks for your help. 

  • Drag and drop data object  not working in jdev 11.1.1.7

    I am trying to do quote process lab and faced this issue.
    When defining the user task parameter in jdev 11.1.1.7 i am not able to drag and drop the data object in parameter list section.

    Infact i am trying to create a simple BPMN projoect but it doesn't allow the data object to be drag and dropped in the parameter list.
    This same thing was working fine for me in Jdev 11.1.1.6,Is there a bug in jdeve 11.1.1.7 ? Has anyone tested with the latest release?

Maybe you are looking for