Logo iconXDSoft.net
  • Jodit
  • Examples
  • Playground
  • Builder
  • Jodit PRO
  • Github
Jodit Editor
  • Overview
  • Getting Started
  • Button System
  • Jodit Awesome
  • Options
  • Contributing guide
  • Plugin System
  • Modules
    • Async
    • Component system
    • Constants
    • Context menu
    • Create DOM
    • Decorators
    • Dialog system
    • DOM operation
    • Event Emitter
    • Filebrowser
    • Global
    • Helpers
    • History
    • Icon system
    • Image editor
    • Jodit constructor
    • Langs
    • Show info messages
    • Plugins
    • Request
    • Selection
    • Status bar
    • Persistent storage
    • Table processor
    • Toolbar
    • Traits
    • Types
    • UI System
    • File uploader module
    • View UI component
    • Jodit widgets
  • Classes
  • Interfaces

In this article:

  • How to use
  • Classes

Status bar

  • How to use
  • Classes

This module provides a status bar for the application.
Allowing to display a message to the user or additional information about the editor.

How to useHow to use

const jodit = Jodit.make('#editor');
const elm = document.createElement('div');
elm.className = 'jodit-status-bar__element';
elm.innerHTML = 'Hello world!';
jodit.statusbar.append(elm);

ClassesClasses

  • StatusBar
Previous
Selection
Next
Persistent storage