Changing default color editor to display color picker only
Is there any way in the Dapfor Grid editors to have the default color editor not display the RGB string after the color display? Or is that going to need a custom editor?
0
-
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,
Dapfor0
Please sign in to leave a comment.
Comments
1 comment