Vue Bootstrap Table Editor

Vue Table Editor Plugin - Bootstrap 4 & Material Design

Note: We are transitioning MDB4 to a legacy version and focusing on developing MDB5. While we'll continue to support for the transition period, we encourage you to migrate to MDB5. We're offering a 50% discount on MDB5 PRO to help with your transition, enabling you to leverage the full potential of the latest version. You can find more information here.
get 50% discount on MDB5 PRO



Translations

Vue Bootstrap Table Editor comes with the option that allows you to use custom translations for all text in the editor.

        
            
        <template>
          <div class="container">
            <mdb-table-editor
              :data="data"
              :translations="{
                countLabel: 'row selected',
                add: 'Add',
                edit: 'Edit',
                delete: 'Delete',
                selectLabel: 'Show entries',
                searchLabel: 'Search',
                prev: 'Previous',
                next: 'Next',
                addFormLabel: 'Add new form',
                addFormBtn: 'Add form',
                editFormLabel: 'Edit form',
                editFormBtn: 'Edit form',
                deleteFormLabel: 'Delete',
                deleteFormText: 'Are you sure to delete selected row?',
                deleteFormYes: 'Yes',
                deleteFormNo: 'No'
              }"
              striped
              bordered
            />
          </div>
        </template>
        
        
    

MDB Vue Table Editor - API


Download

This plugin requires a purchase.

Buy table editor plugin

Options

Name Type Description
data Object Defines table content.
count boolean Shows information about selected item.
disabled boolean Disables adding, editing and removing rows.
translations object Allows to overwrite default plugin translations. See details here.