Cindy Chastang
Is there a way to disable the Select All checkbox on the table control?
I have one area of my application where users think they need to Select All when they really don’t so we were hoping to just remove the Select All option. If it’s not so easy to select all we hope they’ll stop and read the instructions. Otherwise we’ll redesign it.
SPARK Support
Hi Cindy,
There is no configuration option to disable the Select All. However, you can hide it by using custom CSS on the form. Try dropping this into a Custom HTML control:
<style>
.SPARKTable .table>thead>tr>th.SelCtl>div {
display: none;
}
</style>
Regards,
Stephen P.
SPARK Support
Hi Cindy,
Glad to hear it. You’re welcome.
Regards,
Stephen P.