增加lgbTooltip方法包装原生态tooltip方法,方便调用
This commit is contained in:
parent
717d29f028
commit
1836953005
|
@ -240,6 +240,13 @@
|
|||
});
|
||||
that.animate({ marginTop: "+=" + getHeight() });
|
||||
},
|
||||
lgbTooltip: function (option) {
|
||||
if (option == undefined) option = { container: 'body', delay: { "show": 500, "hide": 100 } };
|
||||
else if (typeof option == "object") option = $.extend({ container: 'body', delay: { "show": 500, "hide": 100 } }, option);
|
||||
$(this).tooltip(option);
|
||||
if (option == 'destroy') $(this).removeAttr('data-original-title');
|
||||
return this;
|
||||
},
|
||||
autoValidate: function (rules, messages, handler) {
|
||||
var parent = 'body';
|
||||
var $wrapper = $('#dialogNew');
|
||||
|
@ -263,13 +270,13 @@
|
|||
$(element).parents('.form-group').addClass(errorClass).removeClass(validClass);
|
||||
},
|
||||
unhighlight: function (element, errorClass, validClass) {
|
||||
$(element).tooltip('destroy').removeAttr('data-original-title').parents('.form-group').removeClass(errorClass).addClass(validClass);
|
||||
$(element).lgbTooltip('destroy').parents('.form-group').removeClass(errorClass).addClass(validClass);
|
||||
},
|
||||
errorPlacement: function (label, element) {
|
||||
var $ele = $(element);
|
||||
if (!$ele.attr('data-original-title')) $ele.tooltip({ container: parent, delay: { "show": 500, "hide": 100 } });
|
||||
if (!$ele.attr('data-original-title')) $ele.lgbTooltip({ container: parent });
|
||||
$ele.attr('data-original-title', $(label).text());
|
||||
$ele.tooltip('show')
|
||||
$ele.lgbTooltip('show')
|
||||
}
|
||||
});
|
||||
if (handler && $.isArray(handler.button)) {
|
||||
|
|
|
@ -55,7 +55,7 @@ $(function () {
|
|||
scrollTop: 0
|
||||
}, 200);
|
||||
});
|
||||
if (!$.browser.versions.mobile) $('[role="tooltip"]').tooltip({ delay: { "show": 500, "hide": 100 } });
|
||||
if (!$.browser.versions.mobile) $('[role="tooltip"]').lgbTooltip();
|
||||
|
||||
// breadcrumb
|
||||
var arch = $('#nav-accordion').find('a.active').last();
|
||||
|
|
|
@ -31,6 +31,7 @@
|
|||
if (that.options.validateForm && that.options.validateForm.constructor === String) {
|
||||
var v = $('#' + that.options.validateForm);
|
||||
v.validate().resetForm();
|
||||
v.find('[data-original-title]').lgbTooltip('destroy');
|
||||
v.find('.has-error, .has-success').removeClass("has-error has-success");
|
||||
}
|
||||
});
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
$dialogRoleHeader.text($.format('{0}-角色授权窗口', row.GroupName));
|
||||
$dialogRoleForm.html(html).find('[role="tooltip"]').each(function (index, label) {
|
||||
if (label.title == "") label.title = "未设置";
|
||||
}).tooltip({ container: 'body', delay: { "show": 500, "hide": 100 } });
|
||||
}).lgbTooltip();
|
||||
$dialogRole.modal('show');
|
||||
}
|
||||
});
|
||||
|
@ -47,7 +47,7 @@
|
|||
$dialogUserHeader.text($.format('{0}-用户授权窗口', row.GroupName));
|
||||
$dialogUserForm.html(html).find('[role="tooltip"]').each(function (index, label) {
|
||||
if (label.title == "") label.title = "未设置";
|
||||
}).tooltip({ container: 'body', delay: { "show": 500, "hide": 100 } });
|
||||
}).lgbTooltip();
|
||||
$dialogUser.modal('show');
|
||||
}
|
||||
});
|
||||
|
|
|
@ -50,7 +50,7 @@
|
|||
$dialogRoleHeader.text($.format('{0}-角色授权窗口', row.Name));
|
||||
$dialogRoleForm.html(html).find('[role="tooltip"]').each(function (index, label) {
|
||||
if (label.title == "") label.title = "未设置";
|
||||
}).tooltip({ container: 'body', delay: { "show": 500, "hide": 100 } });
|
||||
}).lgbTooltip();
|
||||
$dialogRole.modal('show');
|
||||
}
|
||||
});
|
||||
|
|
|
@ -149,7 +149,7 @@
|
|||
}).join('');
|
||||
$sortable.append($.format('<li class="title">{0}-{1}</li>', options.item.Desc, options.item.Key));
|
||||
$sortable.append(content);
|
||||
if (!$.browser.versions.mobile) $sortable.find('[role="tooltip"]').tooltip({ container: 'body', delay: { "show": 500, "hide": 100 } });
|
||||
if (!$.browser.versions.mobile) $sortable.find('[role="tooltip"]').lgbTooltip();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -158,7 +158,7 @@
|
|||
$('#refreshCache').click(function () { listCacheUrl(); }).trigger('click');
|
||||
$('#clearCache').click(function () { listCacheUrl({ clear: true }); });
|
||||
$sortable.on('click', '.btn', function () {
|
||||
$(this).tooltip('destroy');
|
||||
$(this).lgbTooltip('destroy');
|
||||
listCache({ key: $(this).attr('data-key'), url: $(this).attr('data-url') });
|
||||
listCacheUrl();
|
||||
});
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
$dialogUserHeader.text($.format('{0}-用户授权窗口', row.RoleName));
|
||||
$dialogUserForm.html(html).find('[role="tooltip"]').each(function (index, label) {
|
||||
if (label.title == "") label.title = "未设置";
|
||||
}).tooltip({ container: 'body', delay: { "show": 500, "hide": 100 } });
|
||||
}).lgbTooltip();
|
||||
$dialogUser.modal('show');
|
||||
}
|
||||
});
|
||||
|
@ -53,7 +53,7 @@
|
|||
$dialogGroupHeader.text($.format('{0}-部门授权窗口', row.RoleName));
|
||||
$dialogGroupForm.html(html).find('[role="tooltip"]').each(function (index, label) {
|
||||
if (label.title == "") label.title = "未设置";
|
||||
}).tooltip({ container: 'body', delay: { "show": 500, "hide": 100 } });
|
||||
}).lgbTooltip();
|
||||
$dialogGroup.modal('show');
|
||||
}
|
||||
});
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
$dialogRoleHeader.text($.format('{0}-角色授权窗口', row.DisplayName));
|
||||
$dialogRoleForm.html(html).find('[role="tooltip"]').each(function (index, label) {
|
||||
if (label.title == "") label.title = "未设置";
|
||||
}).tooltip({ container: 'body', delay: { "show": 500, "hide": 100 } });
|
||||
}).lgbTooltip();
|
||||
$dialogRole.modal('show');
|
||||
}
|
||||
});
|
||||
|
@ -49,7 +49,7 @@
|
|||
$dialogGroupHeader.text($.format('{0}-部门授权窗口', row.DisplayName));
|
||||
$dialogGroupForm.html(html).find('[role="tooltip"]').each(function (index, label) {
|
||||
if (label.title == "") label.title = "未设置";
|
||||
}).tooltip({ container: 'body', delay: { "show": 500, "hide": 100 } });
|
||||
}).lgbTooltip();
|
||||
$dialogGroup.modal('show');
|
||||
}
|
||||
});
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
return $.format(htmlNewUsers, noti.UserName, noti.Description, noti.RegisterTime, noti.ID, noti.DisplayName);
|
||||
}).join('');
|
||||
$taskUsers.append(content);
|
||||
if (!$.browser.versions.mobile) $('#tasks-users').find('[role="tooltip"]').tooltip({ delay: { "show": 500, "hide": 100 } });
|
||||
if (!$.browser.versions.mobile) $('#tasks-users').find('[role="tooltip"]').lgbTooltip();
|
||||
}
|
||||
$btnRefreshUser.toggleClass('fa-spin');
|
||||
}
|
||||
|
@ -26,7 +26,7 @@
|
|||
$btnRefreshUser.on('click', function () {
|
||||
listData();
|
||||
});
|
||||
if (!$.browser.versions.mobile) $btnRefreshUser.tooltip({ container: 'body', delay: { "show": 500, "hide": 100 } });
|
||||
if (!$.browser.versions.mobile) $btnRefreshUser.lgbTooltip();
|
||||
|
||||
$('#tasks-users').on('click', 'button', function () {
|
||||
var id = $(this).attr('data-id');
|
||||
|
|
Loading…
Reference in New Issue