Set or remove the tooltip prompt box when the vxe-grid table has too much content

Official APIs:

If it is false, the table height will be determined according to the content;

If true, the default is the tooltip effect.

personal code:

The vxe-grid configuration item is saved in the gridOptions variable

gridOptions: {
   showOverflow: 'tooltip',
   ......
},

Effect:

Remove the tooltip box:

gridOptions: {
   showOverflow: 'tooltip',
   ......
},

Effect:

Guess you like

Origin blog.csdn.net/Andye11/article/details/129745321