* @param {Hanstontable} hotInstance Instance of Handsontable.
(hotInstance: HotInstance)
| 168 | * @param {Hanstontable} hotInstance Instance of {@link Handsontable}. |
| 169 | */ |
| 170 | constructor(hotInstance: HotInstance) { |
| 171 | this.hot = hotInstance; |
| 172 | this.eventManager = new EventManager(this.hot); |
| 173 | this.settings = this.hot.getSettings(); |
| 174 | |
| 175 | this.createElements(); |
| 176 | this.registerEvents(); |
| 177 | this.initializeWalkontable(); |
| 178 | } |
| 179 | |
| 180 | /** |
| 181 | * Renders WalkontableUI. |
nothing calls this directly
no test coverage detected