Results 5 comments of Alex

As a workaround I've replaced `public function toInt(): int` to `public function toInt(): float` and add `ini_set('precision', 30);`

Page break: ``` const options = { extraButtons: ['pageBreak'] }; Jodit.defaultOptions.controls.pageBreak = { icon: Jodit.modules.Icon.getIcon('hr'), tooltip: 'Page break', exec: editor => this.editor.selection.insertHTML('') }; ``` Emulate A4 pages: ``` .jodit-workplace {...

@ankushsilhi have you found the solution?

@KarelWintersky Just add second argument **overrideDefault** to select() `->select("a.id, a.title, a.cdate", true)`

``` $stmt = $query->execute(); $this->items = $stmt->fetchAll(\PDO::FETCH_COLUMN); ```