this.findDelay = typeof this.props.findDelay === 'number' ? this.props.findDelay : 500; | |
this.options = props.gridOptions; | |
this.options.columns = this.options.columns ? this.options.columns : []; | |
this.options.loadCollapsed = this.options.loadCollapsed ? this.options.loadCollapsed : false; | |
this.options.tableHeight = this.options.tableHeight ? this.options.tableHeight : 500;this.options.rowHeight = this.options.rowHeight ? this.options.rowHeight : 96; | |
this.defualtColWidth = this.options.columns.length ? `${100 / this.options.columns.length}%` : null; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment