x-body applied even with scopeResetCss = true
I'm trying to upgrade from 4.0.1 to 4.0.7 or 4.1.0. In 4.0.1 using scopeResetCss = true caused ExtJs to not apply x-body to the body tag of my HTML.
When I upgrade this is applied and overrides all the CSS I already have.
Is there anyway to disable this from happening? even ext-all-scoped.css has this issue.
I'm loading ext as follows:
Code:
<script type="text/javascript" src="/scripts/ext-4.0.7/ext-all.js"></script>
<script type="text/javascript">
Ext.scopeResetCSS = true;
</script>
I also tried:
Code:
<script>Ext = {buildSettings:{"scopeResetCSS": true }};</script>
<script type="text/javascript" src="/scripts/ext-4.0.7/ext-all.js"></script>