!834 fix(#I2BMMC): can't resize column width when set ShowTip is true on Column

* refactor: 移除列提示信息逻辑
* refactor: 移除 tooltip 分支
This commit is contained in:
Argo 2021-01-02 21:14:48 +08:00
parent 4cc14bd805
commit 9fc8deb46b
4 changed files with 2 additions and 10 deletions

View File

@ -278,11 +278,6 @@ namespace BootstrapBlazor.Components
if (IsRendered)
{
if (Columns.Any(col => col.ShowTips))
{
methodName = "tooltip";
}
if (!string.IsNullOrEmpty(methodName))
{
// 固定表头脚本关联

File diff suppressed because one or more lines are too long

View File

@ -1448,9 +1448,6 @@
else width = $(window).outerWidth(true);
return width;
}
else if (method === 'tooltip') {
tooltip();
}
},
timePicker: function (el) {
return $(el).find('.time-spinner-item').height();

File diff suppressed because one or more lines are too long