Hi,
How can I set cfgrid header (table header) not to be clickable by user? Right now - cfgrid allowing user to sort columns and even letting user to view the columns with display property set to false (e.g, the phone number column below). I want to disable both functionalities.
<cfgrid name="usersgrid" pagesize="5" format="html" width="100%" height="200"
bind="cfc:Users.getUsers({cfgridpage},{cfgridpagesize},{cfgridsortcolumn},{cfgridsortdirection},{filtercolumn},{filter})">
<cfgridcolumn name="FirstName" header="First Name">
<cfgridcolumn name="LastName" header="Last Name">
<cfgridcolumn name="UserName" header="User Name">
<cfgridcolumn name="DisplayName" header="Display Name">
<cfgridcolumn name="UserAccountingCode" header="GL Code (User)" display="false">
<cfgridcolumn name="Phone" header="Phone No." display="false">
</cfgrid>
How can I set cfgrid header (table header) not to be clickable by user? Right now - cfgrid allowing user to sort columns and even letting user to view the columns with display property set to false (e.g, the phone number column below). I want to disable both functionalities.
<cfgrid name="usersgrid" pagesize="5" format="html" width="100%" height="200"
bind="cfc:Users.getUsers({cfgridpage},{cfgridpagesize},{cfgridsortcolumn},{cfgridsortdirection},{filtercolumn},{filter})">
<cfgridcolumn name="FirstName" header="First Name">
<cfgridcolumn name="LastName" header="Last Name">
<cfgridcolumn name="UserName" header="User Name">
<cfgridcolumn name="DisplayName" header="Display Name">
<cfgridcolumn name="UserAccountingCode" header="GL Code (User)" display="false">
<cfgridcolumn name="Phone" header="Phone No." display="false">
</cfgrid>