I would like to use a JS charting tool that has gantt chart capability. For this particular api a div is needed as an argument. How can I reliably pass the proper div to this api using JSNI or somthing else in SmartGWT?
See the QuickStart chapter on custom components - you want to override getInnerHTML() to create a DIV with a specific ID, then pass that ID to this third-party tool via a JSNI call.
Comment