* Get the number of columns in the grid (default 12). * * @returns the current number of columns in the grid * * @example * const columnCount = grid.getColumn(); // returns 12 by default
()
| 1076 | * const columnCount = grid.getColumn(); // returns 12 by default |
| 1077 | */ |
| 1078 | public getColumn(): number { return this.opts.column as number; } |
| 1079 | |
| 1080 | /** |
| 1081 | * Returns an array of grid HTML elements (no placeholder) - used to iterate through our children in DOM order. |
no outgoing calls
no test coverage detected