hi,
I have RadGrid with columns like "Discontinued " which can have valid values as Yes/No or 1/0. I am using SQL server database bit column to store the "Discontinued " data.
When I try to display "Discontinued " as a checkbox item inside the grid, I get the error message that says " can not convert string to Boolean".
<telerik:GridCheckBoxColumn DataField="Discontinued" HeaderText="Discontinued" SortExpression="Discontinued"
UniqueName="Discontinued" EditFormColumnIndex="1">
</telerik:GridCheckBoxColumn>
Is there a way to convert the database value to boolean before it gets attached to the RadGrid?
Thanks!