isRender property

bool isRender

判断是否渲染

Implementation

bool get isRender {
  if (condition == null || this.tagName == 'row-for' || this.tagName == 'table' || this.tagName == 'table-column') {
    return true;
  }

  return this.dataSource!.execExpressionToValue(condition!) ?? false;
}