mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 11:26:00 +00:00
grayed nodes in perspective designer
This commit is contained in:
@@ -190,6 +190,12 @@ export abstract class PerspectiveTreeNode {
|
||||
return null;
|
||||
}
|
||||
|
||||
get hasUncheckedNodeInPath() {
|
||||
if (!this.parentNode) return false;
|
||||
if (!this.isCheckedNode) return true;
|
||||
return this.parentNode.hasUncheckedNodeInPath;
|
||||
}
|
||||
|
||||
get childDataColumn() {
|
||||
if (this.isCheckedColumn) {
|
||||
return this.codeName;
|
||||
|
||||
Reference in New Issue
Block a user