# tablepress/trunk/admin/js/edit.js

TablePress – Tables in WordPress made easy, version trunk. 37 lines.

- Page: https://pluginprobe.com/plugins/tablepress/trunk/code/admin/js/edit.js
- Raw: https://pluginprobe.com/plugins/tablepress/trunk/raw/admin/js/edit.js
- Modified: 2026-04-07T08:40:50+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/tablepress/trunk/code/admin/js/edit.js#L10-L20`.

```javascript
/**
 * JavaScript code for the "Edit" screen.
 *
 * @package TablePress
 * @subpackage Views JavaScript
 * @author Tobias Bäthge
 * @since 2.0.0
 */

/**
 * Load the default "Edit" screen sections.
 */
import './edit/header-bar';
import './edit/table-information';
import './edit/table-manipulation';
import './edit/table-options';
import './edit/datatables-features';
import './edit/table-preview';

/**
 * Load the non-React "Edit" screen JavaScript code, mostly for the table data editor.
 */
import './edit/editor';
import './edit/keyboard-shortcuts';
import './edit/screen-options';

/**
 * Internal dependencies.
 */
import { initializeReactComponent } from './common/react-loader';
import Screen from './edit/screen';

initializeReactComponent(
	'tablepress-edit-screen',
	<Screen />,
);

```
