Valeriy

Results 96 comments of Valeriy

$("#element_id").datetimepicker(); ... $("#element_id").datetimepicker({allowTimes:[]}); // set options dinamically

Use https://xdsoft.net/jodit/doc/options/popup/ option ```js Jodit.make('#editor', { popup: { img: [ { name: 'yourbtn', ... } ] } }) ```

Use `Jodit.defaultOptions.popup.img` and `Jodit.Array` for this ``` img: Jodit.Array([ { name: "delete" }, ...Jodit.defaultOptions.popup.img ]) ``` > When you use the usual array - it merges them. `Jodit.Array` will replace...

Hi, added option in config * `$config['saveSameFileNameStrategy'] = "addNumber"` - Strategy in case the uploaded file has the same name as the file on the server. - "addNumber" - The...

This repository contains only the code that deploys the application to your backend; all logic is in its deps in `jodit/application` https://github.com/xdan/jodit-connector-application package, just update it ```bash composer upgrade jodit/application...

We don't use MutationObserver and you have to tell jodit that you changed something with editor.synchronizeValues()

Added information about sync https://xdsoft.net/jodit/docs/modules/plugin.html#buttons

We will check it, but now you can disable beautify and ace ```js Jodit.make('#editor', { beautifyHTML: false, sourceEditor: 'area' }); ```

This is expected behavior https://xdsoft.net/jodit/pro/docs/how-to/add-custom-font-family.md