Currently in the index.html file, we have this:
<script src="beer/sc/modules-debug/ISC_Core.js"></script>
<script src="beer/sc/modules-debug/ISC_Foundation.js"></script>
<script src="beer/sc/modules-debug/ISC_Containers.js"></script>
<script src="beer/sc/modules-debug/ISC_Grids.js"></script>
<script src="beer/sc/modules-debug/ISC_Forms.js"></script>
<script src="beer/sc/modules-debug/ISC_Calendar.js"></script>
<script src="beer/sc/modules-debug/ISC_DataBinding.js"></script>
<script src="beer/sc/modules-debug/ISC_Drawing.js"></script>
<script src="beer/sc/modules-debug/ISC_Charts.js"></script>
<script src="beer/sc/modules-debug/ISC_RichTextEditor.js"></script>
These files are cached by the browser, which works perfectly well until we update the SmartGWT version. Is there an easy way to instruct the browser to load in all these files from the server, rather than the cache, only when we deploy a new SmartGWT version? For example something like loading in beer/sc/modules-debug/ISC_RichTextEditor.js?version=12.1p_6_19_2019.
<script src="beer/sc/modules-debug/ISC_Core.js"></script>
<script src="beer/sc/modules-debug/ISC_Foundation.js"></script>
<script src="beer/sc/modules-debug/ISC_Containers.js"></script>
<script src="beer/sc/modules-debug/ISC_Grids.js"></script>
<script src="beer/sc/modules-debug/ISC_Forms.js"></script>
<script src="beer/sc/modules-debug/ISC_Calendar.js"></script>
<script src="beer/sc/modules-debug/ISC_DataBinding.js"></script>
<script src="beer/sc/modules-debug/ISC_Drawing.js"></script>
<script src="beer/sc/modules-debug/ISC_Charts.js"></script>
<script src="beer/sc/modules-debug/ISC_RichTextEditor.js"></script>
These files are cached by the browser, which works perfectly well until we update the SmartGWT version. Is there an easy way to instruct the browser to load in all these files from the server, rather than the cache, only when we deploy a new SmartGWT version? For example something like loading in beer/sc/modules-debug/ISC_RichTextEditor.js?version=12.1p_6_19_2019.
Comment