Hi Jeroen,

you can easily integrate external scripts using qooxdoo's resource 
system. Just copy the minified kinetic script to your resource folder 
and add an #asset hint to your application. Then after re-generating 
your app, you can load it like this:

var url = 
qx.util.ResourceManager.getInstance().toUri("myapp/kinetic-v4.4.1.min.js");
var req = new qx.bom.request.Script();
req.onload = function() {
   // Global Kinetic object is ready to use
};

req.open("GET", url);
req.send();


Regards,
Daniel

On 10.04.2013 17:16, Jeroen Smit wrote:
> Hi,
>
> I am currently looking into some Html5 development and I am wondering if
> it is possible to use Kinetic (http://kineticjs.com/ kinetic-v4.4.1.js)
> within an application built with Qooxdoo.
>
> So far I haven’t been able to get it compiling sucessfully but I’d
> rather not change the structure of the Kinetic sources to comply to the
> Qx-class definitions.
>
> I hope someone can help me with this.
>
> Thanks in advance
>
> Best regards,
>
> Jeroen
>
>
>
> ------------------------------------------------------------------------------
> Precog is a next-generation analytics platform capable of advanced
> analytics on semi-structured data. The platform includes APIs for building
> apps and a phenomenal toolset for data science. Developers can use
> our toolset for easy data analysis & visualization. Get a free account!
> http://www2.precog.com/precogplatform/slashdotnewsletter
>
>
>
> _______________________________________________
> qooxdoo-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
>

------------------------------------------------------------------------------
Precog is a next-generation analytics platform capable of advanced
analytics on semi-structured data. The platform includes APIs for building
apps and a phenomenal toolset for data science. Developers can use
our toolset for easy data analysis & visualization. Get a free account!
http://www2.precog.com/precogplatform/slashdotnewsletter
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to