Hello everyone.
I am starting to use Ext Designer, I am trying it with my colleagues.
This is the problem:
When I edit and export the demo project (the Cars one, downloadable from the site), the xds_index.html contains all the <script type> tags I need to inclued all needed files.
Code:
<script type="text/javascript" src="http://extjs.cachefly.net/ext-3.2.0/adapter/ext/ext-base.js"></script> <script type="text/javascript" src="http://extjs.cachefly.net/ext-3.2.0/ext-all-debug.js"></script>
<script type="text/javascript" src="CarMasterDetail.ui.js"></script>
<script type="text/javascript" src="CarMasterDetail.js"></script>
<script type="text/javascript" src="carStore.js"></script>
<script type="text/javascript" src="xds_index.js"></script>
When I try to export a simple project I created to test Designer, these tags do not appear in my designer.html generated file:
Code:
<script type="text/javascript" src="http://extjs.cachefly.net/ext-4.0.2a/ext-all-debug.js"></script>
<script type="text/javascript" src="designer.js"></script>
They appear only in designer_includeOrder.txt file, and I have to copy them manually each time I export files:
Code:
<script type="text/javascript" src="app/view/ui/MyContainer.js"></script><script type="text/javascript" src="app/view/MyContainer.js"></script>
<script type="text/javascript" src="app/store/provaStore.js"></script>
Is there any setting I need to configure?
Thank you.
Stefano