I currently have a ComponentArt Grid, which has a column containing DateTime values. In the even that a certain date is used, we want to keep the cell empty.

Since DateTime is a struct it cannot be null or empty. So I am looking for a way to tell the grid to leave the cell blank if this certain date is bound to the grid.

Any solutions would be greatly appreciated.

link|improve this question

How are you binding your DataSource to CA's grid? – wtaniguchi Jul 30 '09 at 19:03
feedback

1 Answer

up vote 1 down vote accepted

When defining a GridColumn you can set it to use a custom client template (or a server template if you need ASP.NET components).

You can have whatever logic you may need there to hide the cell value (You may not print it at all).

For server templates you can see an example here, examples on client templates are in the docs too.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.