73 lines
1.4 KiB
HTML
73 lines
1.4 KiB
HTML
|
<!DOCTYPE HTML>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
|
||
|
|
||
|
<link href="../dist/jsoneditor.css" rel="stylesheet" type="text/css">
|
||
|
<script src="../dist/jsoneditor.js"></script>
|
||
|
|
||
|
<style type="text/css">
|
||
|
body {
|
||
|
font: 10.5pt arial;
|
||
|
color: #4d4d4d;
|
||
|
line-height: 150%;
|
||
|
width: 500px;
|
||
|
padding-left: 40px;
|
||
|
}
|
||
|
|
||
|
code {
|
||
|
background-color: #f5f5f5;
|
||
|
}
|
||
|
|
||
|
#jsoneditor {
|
||
|
width: 500px;
|
||
|
height: 500px;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<p>
|
||
|
Switch editor mode using the mode box.
|
||
|
Note that the mode can be changed programmatically as well using the method
|
||
|
<code>editor.setMode(mode)</code>, try it in the console of your browser.
|
||
|
</p>
|
||
|
|
||
|
<form>
|
||
|
<div id="jsoneditor"></div>
|
||
|
</form>
|
||
|
|
||
|
<script>
|
||
|
var container = document.getElementById('jsoneditor');
|
||
|
|
||
|
var options = {
|
||
|
mode: 'tree',
|
||
|
modes: ['code', 'form', 'text', 'tree', 'view'], // allowed modes
|
||
|
onError: function (err) {
|
||
|
console.error(err);
|
||
|
alert(err.toString());
|
||
|
},
|
||
|
onChange: function () {
|
||
|
console.log('change');
|
||
|
},
|
||
|
indentation: 4,
|
||
|
escapeUnicode: true
|
||
|
};
|
||
|
|
||
|
var json = {
|
||
|
array: [],
|
||
|
object: { a: 2, b: 3}
|
||
|
};
|
||
|
for (var i = 0; i < 10000; i++) {
|
||
|
json.array.push({
|
||
|
name: 'Item ' + i,
|
||
|
index: i,
|
||
|
time: new Date().toISOString()
|
||
|
});
|
||
|
}
|
||
|
|
||
|
var editor = new JSONEditor(container, options, json);
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|