Skip to content
Snippets Groups Projects
Commit ec50bccd authored by Renaud Le Gac's avatar Renaud Le Gac
Browse files

A new plugin to render mathematics formula in grid using MathJax;

parent 3a4d88d5
No related branches found
No related tags found
No related merge requests found
/**
* Plugin to render mathematics formula embedded in grid content.
* The processing is performed by MathJax.
* The MathJax library is loaded by the framework
*
* @version $Id$
*
*/
Ext.namespace('App.grid');
App.grid.MathJax = Ext.extend(Object, {
init: function(grid){
grid.getView().on('refresh', function(){
MathJax.Hub.PreProcess();
MathJax.Hub.Process();
})
},
});
Ext.preg('pGridMathJax', App.grid.MathJax);
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment