Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My problem is that I get following error if I am calling a function of the plugin not in index.html.

02-10 16:48:31.606: D/PhoneGapLog(24149): Uncaught TypeError: Cannot call method 'toDataURL' of undefined

I want to use the canvas plugin, it's working in the index.html but not in other pages...how I have to change this call:

window.plugins.canvas.toDataURL(canvas, "image/png", success, failure);

also have the same problem with other plugins, - how to implement them in related pages ?

regards

the code:

<body>
    <div data-role="page" id="some_id">     

    <style type="text/css">
        #img {
            position:absolute;
            top:20px;
            left:20px;
            width: 400px;
            height: 400px;
            border: 1px solid;
            border-color: #458d91;
            -moz-border-radius:16px;
            -khtml-border-radius:16px;
            font-family: Verdana, Arial, Helvetica, sans-serif;
            font-size: 10px;
            padding-top: 10px;
            padding-left:10px;
            padding-right:10px;
            padding-bottom: 10px;
        }
        </style>

    <script type="text/javascript" charset="utf-8" src="phonegap-1.4.1.js"></script>
    <script type="text/javascript" charset="utf-8" src="jquery.min.js"></script>
    <script type="text/javascript" charset="utf-8" src="canvas.js"></script>
    <script type="text/javascript" charset="utf-8" src="jquery.mobile-1.0.min.js"></script>

    <script type="text/javascript">

    try {
        var canSave = false;
        var b_canvas;
        function init() {

            document.addEventListener('deviceready', function() {
                canSave = true;
            });

            b_canvas = document.getElementById('cid');
            var b_context = b_canvas.getContext('2d');
            b_context.fillRect(50, 25, 150, 100);
        }
        function saveImg() {

            if (canSave) {

                window.plugins.canvas.toDataURL(b_canvas, "image/png", success, failure);
                function success(arg) {

                    if (arg.size > 0) {
                        var oImgElement = document.createElement("img");
                        oImgElement.src = arg.data;
                        document.getElementById('img').appendChild(oImgElement);
                    } else {            
                        alert("Canvas Write Error: " + arg.debug);
                    }
                }
                function failure(arg) {
                    alert("failure: " + arg);
                }
            }
        }
    } catch(err) { alert(err); }

    </script>

    <br/><br/>
    <a href="#" onclick="init();">init</a>
    <br><br>
    <a href="#" onclick="saveImg();">SAVE</a>
    <div id="img" style="float: left; border: 1px dotted;"></div>
    <br clear="both"/>
    <div style="margin-top: 130px; float: right;">
        <canvas id="cid" width="300" height="225"></canvas>
    </div>


</div>
</body>

share|improve this question

1 Answer

You need to load the plugins JavaScript and phonegap.js on each page that you want to use the plugin on.

share|improve this answer
Hi Simon, thx for the answer, I was considering that...It's possible to init() - but I can't save, it stops at the function of the plugin with the error, posted in the first post...maybe it's the way how I put the code in the data-role of jquery-mobile...mhhh searching for a better solution because of the body-onload...regards – ateam Feb 10 '12 at 19:53
solved - I forgot it to add the js in the index as well, thought just in the site where I am calling the plugin... – ateam Feb 11 '12 at 13:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.