Common issues > Edit auratheme.table.js
Crud Elite
Action Column
Table functions
Common issues
Other
How it works
Issue: I edited the auratheme.table.js
in wwwroot/js
. But the changes are not reflected in the web application when running the project.
Solution: There are 2 alternatives for solving this.
You can change to not use the minified js file from _Layout.cshtml
.
Change from:
<script src="~/js/auratheme.table.min.js" asp-append-version="true"></script>
To:
<script src="~/js/auratheme.table.js" asp-append-version="true"></script>
Remove the whole code in this minified js file: auratheme.table.min.js
Copy the code in from auratheme.table.js
, the non-minified file.
Paste non-minified code in Minify JavaScript Website. This website will minify your js code.
Copy the minified code from the website and paste inside auratheme.table.min.js
.