Common issues > Edit auratheme.table.js

Crud Elite

Getting Started

Action Column

Hide action column

Add buttons to action column

Table functions

Default sorting

“Show 10 records” drop-down

The “Search…” placeholder

Exported file

Columns ordering

Custom content in a column

Confirm delete popup

Common issues

Edit auratheme.table.js

Other

Clone for another table

How it works

Read data for the table

Changes are not reflected after editing auratheme.table.js


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.

Method 1

You can change to not use the minified js file from _Layout.cshtml.

image.png

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>

Method 2

  1. Remove the whole code in this minified js file: auratheme.table.min.js

    image.png

  2. Copy the code in from auratheme.table.js, the non-minified file.

  3. Paste non-minified code in Minify JavaScript Website. This website will minify your js code.

  4. Copy the minified code from the website and paste inside auratheme.table.min.js.