简体   繁体   中英

Extjs 4 Grid hover effect

I am working with extjs 4 n rails. i have grid that has column as filename which is hyperlink. i want to display image on hover effect of filename. the image is saved as binary in database. now i want to display image on hover effect of filename in grid.

i would put a listener on mouseover in the view and then show it as an ordinary <img src='your url'> in a tooltip or other container

viewConfig: {stripeRows: false, trackOver:true},
selType: 'cellmodel',
columns: [
  {text: "Filename", dataIndex: 'filename', 
    listeners: {
      'mouseover': function(){
        //show your container
      }
    }
  },

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM