I don't success to integrate mathjax with GWT (2.4) /JSNI.

In the html header, I add

<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>

In my UIBinder Xml I set a div :

<g:HTMLPanel>
    <div id="renderedLatexArea">
    </div>
</g:HTMLPanel>

In the gwt client code, I ask to renderer the latex

Element latexElement = DOM.getElementById("renderedLatexArea");
latexElement.setInnerHTML("\\[sqrt(2)\\]");
renderLatexResult("renderedLatexArea");

The rendering function is a native (JSNI) function:

public final native void renderLatexResult(String elementId) /*-{
    $wnd.MathJax.Hub.Queue(["Typeset",$wnd.MathJax.Hub,elementId]);     

}-*/;

The devmode console returns an error during execution:

[ERROR] [com.company.project.module.class] Uncaught exception escaped com.google.gwt.core.client.JavaScriptException: (Error): Can't make callback from given data

Thanks for help!

====== Edit ======

I found a solution;

JSNI function:

    public final native void renderLatexResult(com.google.gwt.dom.client.Element e) /*-{
    //$wnd.MathJax.Hub.Queue(["Typeset",$wnd.MathJax.Hub,elementId]);       
    if (typeof $wnd.MathJax !== 'undefined'  &&  $wnd.MathJax != null ){
        //alert("level 1");
        if (typeof $wnd.MathJax.Hub !== 'undefined'  &&  $wnd.MathJax.Hub != null ){
            //alert("level 2");
            if (typeof $wnd.MathJax.Hub.Typeset == 'function' ){
                //alert("level 3");
                $wnd.MathJax.Hub.Typeset(e);
            }
        }
    }
}-*/;

UIBinder code:

<g:HTMLPanel>
    <div ui:field="renderedLatexArea">
    </div>
</g:HTMLPanel>

Client code to launch the rendering:

renderedLatexArea.setInnerHTML(SafeHtmlUtils.htmlEscape(getMathJaxLatexResult(label)));
renderLatexResult(renderedLatexArea);           
link|improve this question
feedback

closed as too localized by Kev Mar 8 at 0:00

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

Browse other questions tagged or ask your own question.