[CLOSED] Mouse over event between grid cells on same row

  1. #1

    [CLOSED] Mouse over event between grid cells on same row

    Hello,

    I am doing a mouse out event on a grid command column. Is there is a way to capture the mouse out event when I move on the same row and different column? Only when I mouse out to a different row, mouse out works. On the same row, mouse out is not triggered.
    Last edited by Daniil; Jul 11, 2014 at 5:05 PM. Reason: [CLOSED]
  2. #2
    Hi @vmehta,

    Unfortunately, there is no such the event in API.

    You could listen to the mouseout event of cells in the following way:
    App.GridPanel1.view.el.select("td.x-grid-cell").on("mouseout", function(e) {
        console.log("mouseout", e.getTarget());
    });
  3. #3
    Can you let me know where this function needs to be called?. We tried it in afterRender, OnReady and others, but could not get this working.
  4. #4
    I would try in a GridPanel's ViewReady event.
  5. #5
    We have tried that as well and it did not work.
  6. #6
    Please try to add Delay="1" for the ViewReady listener.

    If it doesn't help, you are welcome with a test case.

Similar Threads

  1. [CLOSED] Mouse over event for image button
    By vmehta in forum 2.x Legacy Premium Help
    Replies: 11
    Last Post: Jul 02, 2014, 4:19 PM
  2. DateField/TimeField mouse click event
    By retto in forum 2.x Help
    Replies: 0
    Last Post: Mar 10, 2013, 9:43 AM
  3. [CLOSED] Read only cells in a grid
    By Z in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Feb 12, 2013, 3:24 PM
  4. Replies: 9
    Last Post: May 09, 2012, 9:22 AM
  5. relaying mouse event
    By sz_146 in forum 1.x Help
    Replies: 0
    Last Post: Jan 27, 2009, 7:47 AM

Posting Permissions