2017-05-26 15:32:01 +08:00
<!DOCTYPE HTML>
< html >
< head >
< title > JSONEditor | Auto Complete< / title >
< link href = "../dist/jsoneditor.css" rel = "stylesheet" type = "text/css" >
< script src = "../dist/jsoneditor.js" > < / script >
< style type = "text/css" >
#jsoneditor {
width: 500px;
height: 500px;
}
p {
width: 500px;
font-family: "DejaVu Sans", sans-serif;
}
< / style >
< / head >
< body >
< p >
2017-07-02 19:44:08 +08:00
This example demonstrates how to autocomplete works, options available are: 'apple','cranberry','raspberry','pie', 'mango', 'mandarine', 'melon', 'appleton'.
2017-05-26 15:32:01 +08:00
< / p >
< div id = "jsoneditor" > < / div >
< script >
// create the editor
var container = document.getElementById('jsoneditor');
var options = {
2017-07-02 19:44:08 +08:00
autocomplete: {
getOptions: function () {
return ['apple', 'cranberry', 'raspberry', 'pie', 'mango', 'mandarine', 'melon', 'appleton'];
2017-05-26 15:32:01 +08:00
}
2017-07-02 19:44:08 +08:00
}
2017-05-26 15:32:01 +08:00
};
var json = {
2017-07-02 19:44:08 +08:00
'array': [{'field1':'v1', 'field2':'v2'}, 2, 3],
'boolean': true,
'null': null,
'number': 123,
'object': {'a': 'b', 'c': 'd'},
'string': 'Hello World'
2017-05-26 15:32:01 +08:00
};
var editor = new JSONEditor(container, options, json);
< / script >
< / body >
< / html >