基于1.3.3版本tooltip的datagrid单元格tip实现

时间:2023-03-08 21:16:40
基于1.3.3版本tooltip的datagrid单元格tip实现
基于1.3.3版本tooltip的datagrid单元格tip实现
2013年05月25日 ⁄ datagrid ⁄ 共 6122字 ⁄ 评论数 26 ⁄ 被围观 7,033 views+

在Easyui的1.3.3版本中,作者新增了tooltip组件,尽管样式看起来也不咋的,但是终归也是官方出品,同时其功能也算是比较丰富。之前我写过一篇《扩展:datagrid鼠标经过提示单元格内容》那就是用纯编码生成的tip,更为丑陋,有了Easyui 1.3.3的tooltip,我们实现起来就很容易了,直接上代码:

实现代码

  1. $.extend($.fn.datagrid.methods, {
  2. /**
  3. * 开打提示功能
  4. * @param {} jq
  5. * @param {} params 提示消息框的样式
  6. * @return {}
  7. */
  8. doCellTip:function (jq, params) {
  9. function showTip(showParams, td, e, dg) {
  10. //无文本,不提示。
  11. if ($(td).text() == "") return;
  12. params = params || {};
  13. var options = dg.data('datagrid');
  14. showParams.content = '<div class="tipcontent">' + showParams.content + '</div>';
  15. $(td).tooltip({
  16. content:showParams.content,
  17. trackMouse:true,
  18. position:params.position,
  19. onHide:function () {
  20. $(this).tooltip('destroy');
  21. },
  22. onShow:function () {
  23. var tip = $(this).tooltip('tip');
  24. if(showParams.tipStyler){
  25. tip.css(showParams.tipStyler);
  26. }
  27. if(showParams.contentStyler){
  28. tip.find('div.tipcontent').css(showParams.contentStyler);
  29. }
  30. }
  31. }).tooltip('show');
  32. };
  33. return jq.each(function () {
  34. var grid = $(this);
  35. var options = $(this).data('datagrid');
  36. if (!options.tooltip) {
  37. var panel = grid.datagrid('getPanel').panel('panel');
  38. panel.find('.datagrid-body').each(function () {
  39. var delegateEle = $(this).find('> div.datagrid-body-inner').length ? $(this).find('> div.datagrid-body-inner')[0] : this;
  40. $(delegateEle).undelegate('td', 'mouseover').undelegate('td', 'mouseout').undelegate('td', 'mousemove').delegate('td[field]', {
  41. 'mouseover':function (e) {
  42. //if($(this).attr('field')===undefined) return;
  43. var that = this;
  44. var setField = null;
  45. if(params.specialShowFields && params.specialShowFields.sort){
  46. for(var i=0; i<params.specialShowFields.length; i++){
  47. if(params.specialShowFields[i].field == $(this).attr('field')){
  48. setField = params.specialShowFields[i];
  49. }
  50. }
  51. }
  52. if(setField==null){
  53. options.factContent = $(this).find('>div').clone().css({'margin-left':'-5000px', 'width':'auto', 'display':'inline', 'position':'absolute'}).appendTo('body');
  54. var factContentWidth = options.factContent.width();
  55. params.content = $(this).text();
  56. if (params.onlyShowInterrupt) {
  57. if (factContentWidth > $(this).width()) {
  58. showTip(params, this, e, grid);
  59. }
  60. } else {
  61. showTip(params, this, e, grid);
  62. }
  63. }else{
  64. panel.find('.datagrid-body').each(function(){
  65. var trs = $(this).find('tr[datagrid-row-index="' + $(that).parent().attr('datagrid-row-index') + '"]');
  66. trs.each(function(){
  67. var td = $(this).find('> td[field="' + setField.showField + '"]');
  68. if(td.length){
  69. params.content = td.text();
  70. }
  71. });
  72. });
  73. showTip(params, this, e, grid);
  74. }
  75. },
  76. 'mouseout':function (e) {
  77. if (options.factContent) {
  78. options.factContent.remove();
  79. options.factContent = null;
  80. }
  81. }
  82. });
  83. });
  84. }
  85. });
  86. },
  87. /**
  88. * 关闭消息提示功能
  89. * @param {} jq
  90. * @return {}
  91. */
  92. cancelCellTip:function (jq) {
  93. return jq.each(function () {
  94. var data = $(this).data('datagrid');
  95. if (data.factContent) {
  96. data.factContent.remove();
  97. data.factContent = null;
  98. }
  99. var panel = $(this).datagrid('getPanel').panel('panel');
  100. panel.find('.datagrid-body').undelegate('td', 'mouseover').undelegate('td', 'mouseout').undelegate('td', 'mousemove')
  101. });
  102. }
  103. });

入参列表

doCellTip方法的参数包含以下属性:

名称 参数类型 描述以及默认值
onlyShowInterrupt string 是否只有在文字被截断时才显示tip,默认值为false,即所有单元格都显示tip。
specialShowFields Array 需要特殊定义显示的列,比如要求鼠标经过name列时提示standName列(可以是隐藏列)的内容,specialShowFields参数可以传入:[{field:'name',showField:'standName'}]。
position string tip的位置,可以为top,botom,right,left。
tipStyler object tip内容的样式,注意要符合jquery css函数的要求。
contentStyler object 整个tip的样式,注意要符合jquery css函数的要求。

使用示例

  1. $('#dg').datagrid('doCellTip',
  2. {
  3. onlyShowInterrupt:false,
  4. position:'bottom',
  5. tipStyler:{'backgroundColor':'#fff000', borderColor:'#ff0000', maxWidth:'50px', boxShadow:'1px 1px 3px #292929'},
  6. contentStyler:{backgroundColor:'#333', paddingLeft:'5px'}
  7. });

效果演示

http://www.easyui.info/version/jquery-easyui-1.3.3/demo/datagrid/celltips.html