* Returns true if the height of the grid will be less than the vertical * constraint. Always returns true if grid doesn't have height constraint. * @param node contains x,y,w,h,auto-position options * * @example * if (grid.willItFit(newWidget)) { * grid.addWidget(newWidget); *
(node: GridStackWidget)
| 1805 | * } |
| 1806 | */ |
| 1807 | public willItFit(node: GridStackWidget): boolean { return this.engine.willItFit(node) } |
| 1808 | |
| 1809 | /** @internal */ |
| 1810 | protected _triggerChangeEvent(): GridStack { |
no outgoing calls
no test coverage detected