designer table improvements (#19785)

* designer table improvements

* remove async
This commit is contained in:
Alan Ren
2022-06-20 21:33:06 -07:00
committed by GitHub
parent c5093dbb5a
commit 6440ae84d9
3 changed files with 40 additions and 20 deletions

View File

@@ -45,7 +45,8 @@ export class ButtonColumn<T extends Slick.SlickData> extends BaseClickableColumn
name: this.options.name,
toolTip: this.options.title,
resizable: this.options.resizable,
selectable: false
selectable: false,
cssClass: 'slick-plugin-button-cell'
};
}
}

View File

@@ -7,9 +7,7 @@
cursor: pointer;
height: 100%;
text-align: center;
padding-right: 0px;
padding-top: 0px;
padding-bottom: 0px;
padding: 0px;
}
.slick-plugin-button:disabled {
@@ -32,3 +30,7 @@
border-width: 0px;
background-color: transparent;
}
.slick-plugin-button-cell {
text-align: center;
}