
assets.es-head.src.app.ui.jsonPanel.jsonPanel.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sirius-search Show documentation
Show all versions of sirius-search Show documentation
Provides a thin layer above Elasticsearch (Fluent Query API, Automatic Mapping, Utilities)
The newest version!
(function( app ) {
var ui = app.ns("ui");
ui.JsonPanel = ui.InfoPanel.extend({
defaults: {
json: null, // (required)
modal: false,
open: true,
autoRemove: true,
height: 500,
width: 600
},
_baseCls: "uiPanel uiInfoPanel uiJsonPanel",
_body_template: function() {
var body = this._super();
body.children = [ new ui.JsonPretty({ obj: this.config.json }) ];
return body;
}
});
})( this.app );
© 2015 - 2025 Weber Informatics LLC | Privacy Policy