add tooltip to extjs grid to show complete information about that row

前端 未结 5 2117
予麋鹿
予麋鹿 2021-01-17 18:26

I had a gridview, it attached with a model that have some fields. But in my grid i just show one field, and what i want is when my mouse hover to the grid row,

5条回答
  •  情书的邮戳
    2021-01-17 18:57

    I used in renderer:

    function(value,metadata,record){
        metadata.attr = 'ext:qtip="' + val + '"';
    }
    

提交回复
热议问题