WSO2 User Engagement Server aims towards creating any of your complex dashboards very easily. It has a build-in dashboard designer where you can create dynamic layouts and embed gadgets.
But in case you have a requirement of doing it manually, the following code will help you to get started. Put following code as an HTML/Jag file in UES and access through HTTP.
But in case you have a requirement of doing it manually, the following code will help you to get started. Put following code as an HTML/Jag file in UES and access through HTTP.
<!DOCTYPE html> <html lang="en"> <head> <script src="/portal/themes/portal/js/shindig.js"></script> <script src="/portal/themes/portal/js/UESContainer.js"></script> <style type="text/css"> #gadget-1, #gadget-2, #gadget-3 { width: 500px; height: 400px; } </style> </head> <body> <div id="gadget-1"></div> <div id="gadget-2"></div> <!-- Embedding gadget via url --> <iframe id="gadget-3" src="http://localhost:9763/gadgets/ifr?url=http://localhost:9763/portal/gadgets/pie-chart/pie-chart.xml"> </iframe> <script> //UES gadget UESContainer.renderGadget('gadget-1', 'http://localhost:9763/portal/gadgets/bar-chart/bar-chart.xml'); //External gadget UESContainer.renderGadget('gadget-2', 'http://hosting.gmodules.com/ig/gadgets/file/103035663984448200053/Google_Currency_Converter.xml'); </script> </body> </html>
No comments:
Post a Comment