Is there a way to hide the dropdown button that shows up on the right side of a cell that is a DateTime type? The user is able to select the row, but not edit any of the data in the grid. I've set the AutoEdit property to false which prevents the date picker from coming up when you click on the dropdown button, but I would rather that it not show up at all.
Thanks,
Ryan
Hi Ryan,
AutoEdit doesn't have anything to do with whether the user can edit a cell or not. You need to set the Activation property on the cell. Setting Activation to Disabled should prevent the dropdown button from displaying. There may be other settings that works, too.
Works perfectly. Thanks!