Closed
Description
PHP Version
7.4
CodeIgniter4 Version
4.2.8
CodeIgniter4 Installation Method
Manual (zip or tar.gz)
Which operating systems have you tested for this bug?
Windows, Linux
Which server did you use?
apache
Database
MySQL 5.6
What happened?
Toolbar table sort script interfering with project tables in development environment.
Steps to Reproduce
1.Set environment to development
2.Create a table with headers as for example
<table>
<thead>
<tr><th>Col1</th><th>Col2</th></tr>
<thead>
<tbody>
<tr><td>1</td><td>a</td></tr>
<tr><td>2</td><td>b</td></tr>
<tr><td>3</td><td>d</td></tr>
</tbody>
<table>
3.Click on any of the table headers and the table will be sorted
Expected Output
This shouldn't happen because is interfering with custom table sort scripts.
Anything else?
No response