Turn off the Select Boxes on every row of table

The presence of a numeric column summary, or excel download will automatically add checkboxes to your table. If you don’t have summaries or excel download on a read only table there will be no checkboxes.

But, here are some workaround ideas that will all probably not be very satisfactory.

  1. Implement your column summaries in separate UI elements below the table (Maybe a template field). This probably means you need to add a separate model that does this sumarizing.

  2. Add the following CSS code to your resources tab:

    .nx-editor input[type=checkbox] { display: none; }

This will turn off checkboxes on the page (but will not remove the checkbox column from the table).