Skip to main content

Changing default color editor to display color picker only

Comments

1 comment

  • Dapfor Team

    Hi,

    You can display any text in cell even if there are editors, associated with specified column:

     

    grid.PaintCell += delegate(object sender, PaintCellEventArgs e) 
    {
    if(e.Cell.Column != null && e.Cell.Column.Id == "your id")
    {
    e.Text = string.Empty;
    }
    }

     

    Best regards,
    Dapfor

    0

Please sign in to leave a comment.

Powered by Zendesk