Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
907
Can you hide a checkbox conditionally for a Cell?
posted

I have a boolean data type for a sell with allow edit type setto FULL.  For certian nodes, I would like to set the visbility of the check box to false.  ie. Instead of using a disabled look, don't show anything in the cell.  I tried setting the specific column to AllowCellEditDefault, but it had no effect...

Parents
No Data
Reply
  • 469350
    Verified Answer
    Offline posted

    There are a number of ways to do this.

    One would be to set the Hidden property on the cell to hide the entire cell.

    Another way would be to set the Style of the cell to something like Image (or maybe it's Picture). This should display a blank cell.

    Still another way would be to use a DrawFilter or CreationFilter, but I suspect one of the first two methods will work for you and be a whole lot easier.  

Children