Skip to content
Snippets Groups Projects
Commit a231197b authored by LE GAC Renaud's avatar LE GAC Renaud
Browse files

One class per javascript file.

parent 85ad6b6f
No related branches found
No related tags found
No related merge requests found
/**
* Extend the default type for Ext.grid.column in order to render JSON object.
*
* @since 0.4.15.0
*
*/
Ext.define('Ext.grid.JsonColumn', {
extend: 'Ext.grid.column.Column',
alias: 'widget.jsoncolumn',
constructor: function () {
this.renderer = JSON.stringify;
this.callParent(arguments);
}
});
/**
* The Dict widget is an Ext.grid.PropertyGrid which is associated
* to a JSON database field. It can be embedded in Ext.form.Panel.
......
/**
* Extend the default type for Ext.grid.column in order to render JSON object.
*
* @since 0.4.15.0
*
*/
Ext.define('Ext.grid.JsonColumn', {
extend: 'Ext.grid.column.Column',
alias: 'widget.jsoncolumn',
constructor: function () {
this.renderer = JSON.stringify;
this.callParent(arguments);
}
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment