Tile MouseUp Event not working

The Tile seems to have lost its mouseUp handler. Please refer the following example where I have attached both the "up" and "down" handlers. The "down" event gets triggered by not the "up".
Can I also ask why there isn't just a "click" event?

      $(function(){
        $("#tile-tnt").ejTile({
          action         : "tnt",
          tileSize       : "medium",
          text           : "Click Me",
          cssClass       : "launchpad-tile",
          backgroundColor: "#ff6600",
          mouseDown      : function(args) { console.log("down"); },
          mouseUp        : function(args) { console.log("up"); }
        });
      });

1 Reply

AP Arun Palaniyandi Syncfusion Team October 30, 2017 11:29 AM UTC

Hi Jason, 
 
Thanks for contacting Syncfusion support. 
 
Query1:” The Tile seems to have lost its mouseUp handler. Please refer the following example where I have attached both the "up" and "down" handlers. The "down" event gets triggered by not the "up".”. 
 
We have tried to replicate this issue with your shared code but unfortunately we were unable to reproduce this issue from our side. We can able to get both the “mouseDown” and “mouseUp” events get triggered.  
 
 
Note: We have tried to replicate this issue from Volume 1 2016 (14.1.0.41)to our latest version(15.3.0.33) and the issue is not reproduced in those version. So we request you to share your version details, so that it would be very helpful for us to analyze further. 
 
Query2:” Can I also ask why there isn't just a "click" event?”. 
 
Since, we have given mouseDown and mouseUp event instead of click which will be helpful for the Tile control in most cases. The mouseDown and mouseUp event is capable of performing actions rather than the click event. These events were also very much useful in the tile to drag and drop them. 
 
Please check the shared details and the provided information doesn’t meet your requirement. Also give us more information to provide an alternative solution.    
    
Regards,
Arun P.   
 


Loader.
Up arrow icon