Add a fixed table header on the User Level Permissions page

When you have a lot of pages to add permissions to it is easy to get lost in all the checkboxes and having to scroll back to the top to figure out what column I’m on.

It would be useful if the search and table header column was fixed at the top as you scroll.

Perhaps an easy template change?

+1, and also view the table name under the caption to avoid confusing same-captions cases.

You can go to Code -> Client Scripts -> Other -> User Level Permissions Page -> Client Script, add, e.g.

tableOptions.maxHeight = "500px";

Unfortunately this page does not exist in Client Scripts → Other, → etc …

In C:\Users\<user>\AppData\Roaming\aspnetmaker2025\src\aspnetcodebase.xml, add:

            <scripts for="Password Recovery Page" id="reset_password">
                <script name="Client Script" />
                <script name="Startup Script" />
                <!-- Form custom validate event -->
                <script name="Form_CustomValidate" />
            </scripts>
            <scripts for="User Level Permissions Page" id="userpriv"><!-- *** Add this node *** -->
                <script name="Client Script" />
                <script name="Startup Script" />
            </scripts>