标签:.net remote 类别 ons turn top number page splay
{onlyShowInterrupt: true,position: ‘top‘,//,//tipStyler: { ‘backgroundColor‘: ‘#fff000‘, width: ‘200px‘, borderColor: ‘#ff0000‘, boxShadow: ‘1px 1px 3px #292929‘ },//,//contentStyler: { backgroundColor: ‘#333‘, paddingLeft: ‘5px‘ }});
{onlyShowInterrupt: true,position: ‘top‘,//,//tipStyler: { ‘backgroundColor‘: ‘#fff000‘, width: ‘200px‘, borderColor: ‘#ff0000‘, boxShadow: ‘1px 1px 3px #292929‘ },//,//contentStyler: { backgroundColor: ‘#333‘, paddingLeft: ‘5px‘ }});其中:doCellTip为easyui内部封装,并非页面需要定义一个id=doCellTip的标签其他解说查看网站:http://www.zi-han.net/case/easyui/datagrid&tree.html使用以上代码需要引用js文件datagridTip.js
<script type="text/javascript" src="@Url.Content("~/js/datagridTip.js")"></script>代码如下:$.extend($.fn.datagrid.methods, { /** * 开打提示功能 by xiaoyu * @param {} jq * @param {} params 提示消息框的样式 * @return {} */ doCellTip: function (jq, params) { function showTip(showParams, td, e, dg) { //无文本,不提示。 if ($(td).text() == "") return; params = params || {}; // $(".tipcontent").show(); showParams.content = ‘<div class="tipcontent">‘ + showParams.content + ‘</div>‘; $(td).tooltip({ content: showParams.content, trackMouse: true, position: params.position, onHide: function () { $(this).tooltip(‘destroy‘); } , onShow: function () { var tip = $(this).tooltip(‘tip‘); //if (showParams.tipStyler) { // tip.css(showParams.tipStyler); //} if (showParams.content.length > 100) { tip.css({width:‘600px‘}); } if (showParams.contentStyler) { tip.find(‘div.tipcontent‘).css(showParams.contentStyler); } } }).tooltip(‘show‘); }; return jq.each(function () { var grid = $(this); var options = $(this).data(‘datagrid‘); if (!options.tooltip) { var panel = grid.datagrid(‘getPanel‘).panel(‘panel‘); panel.find(‘.datagrid-body‘).each(function() { var delegateEle = $(this).find(‘> div.datagrid-body-inner‘).length ? $(this).find(‘> div.datagrid-body-inner‘)[0] : this; $(delegateEle).undelegate(‘td‘, ‘mouseover‘).undelegate(‘td‘, ‘mouseout‘).undelegate(‘td‘, ‘mousemove‘).delegate(‘td[field]‘, { ‘mouseover‘: function (e) { //if($(this).attr(‘field‘)===undefined) return; // $(".tipcontent").hide(); $(".tooltip.tooltip-top").hide(); // $(".tooltip-arrow-outer").hide(); $(".tooltip-arrow").hide(); var that = this; var setField = null; if (params.specialShowFields && params.specialShowFields.sort) { for (var i = 0; i < params.specialShowFields.length; i++) { if (params.specialShowFields[i].field == $(this).attr(‘field‘)) { setField = params.specialShowFields[i]; } } } if (setField == null) { options.factContent = $(this).find(‘>div‘).clone().css({ ‘margin-left‘: ‘-5000px‘, ‘width‘: ‘auto‘, ‘display‘: ‘inline‘, ‘position‘: ‘absolute‘ }).appendTo(‘body‘).hide(); var factContentWidth = options.factContent.width(); params.content = $(this).text(); if (params.onlyShowInterrupt) { if (factContentWidth > $(this).width()) { showTip(params, this, e, grid); } } else { showTip(params, this, e, grid); } } else { panel.find(‘.datagrid-body‘).each(function() { var trs = $(this).find(‘tr[datagrid-row-index="‘ + $(that).parent().attr(‘datagrid-row-index‘) + ‘"]‘); trs.each(function() { var td = $(this).find(‘> td[field="‘ + setField.showField + ‘"]‘); if (td.length) { params.content = td.text(); } }); }); showTip(params, this, e, grid); } }, ‘mouseup‘: function(e) { if (options.factContent) { options.factContent.remove(); options.factContent = null; } }, ‘mouseout‘: function(e) { if (options.factContent) { options.factContent.remove(); options.factContent = null; } }, ‘mousemove‘: function(e) { if (options.factContent) { options.factContent.remove(); options.factContent = null; } } }); }); } else { if (options.factContent) { options.factContent.remove(); options.factContent = ""; options.factContent = null; } } }); }, /** * 关闭消息提示功能 * @param {} jq * @return {} */ cancelCellTip: function (jq) { return jq.each(function () { var data = $(this).data(‘datagrid‘); if (data.factContent) { data.factContent.remove(); data.factContent = null; } var panel = $(this).datagrid(‘getPanel‘).panel(‘panel‘); panel.find(‘.datagrid-body‘).undelegate(‘td‘, ‘mouseover‘).undelegate(‘td‘, ‘mouseout‘).undelegate(‘td‘, ‘mousemove‘).undelegate(‘td‘, ‘mouseup‘); }); } });
标签:.net remote 类别 ons turn top number page splay
原文地址:http://www.cnblogs.com/minily/p/7390769.html