I have my gadgets container(Shindig code/javascript/container) files in Apache server and my gadgets server is running at 8080 port. I am including the following scripts in my HTML page on Apache server.
1. gadgets.js 2. cookies.js 3. cookiebaseduserprefstore.js Then I got some errors, and then I included rpc.js file using below script tag.. <script type="text/javascript" src=" http://localhost:8080/gadgets/js/rpc.js?c=1&debug=1"></script> And list of scripts that are included are: <script type="text/javascript" src=" http://localhost:8080/gadgets/js/rpc.js?c=1&debug=1"></script> <script type="text/javascript" src="cookies.js"></script> <script type="text/javascript" src="util.js"></script> <script type="text/javascript" src="gadgets.js"></script> <script type="text/javascript" src="cookiebaseduserprefstore.js"></script> All the script files are included correctly. And when I am running sample6.html, dynamic height is not working. Screenshot: http://tech-test.tutorialsforu.com/DynamicHeight.png

