Hi, i have searched the forums and i havent been able to find an answer to this simple question. Our DB server is Oracle and hence it doesnt have a boolean / bit type in it. Any boolean columns are defined as char(1) and the values are set to Y or N (this is stock standard oracle practice).
I want to display data in the radgridview and the most natural column type for the user to use to change values in the Y N column is the checkbox column. Is there any way to bind the column so that if the db value is Y, the check box is checked and if the value is N it is unchecked (and conversly when you check and uncheck the checkbox, the data in the underlying datasource is updated to Y or N),
In the standard .net datagridview, the column has properties called TrueValue and FalseValue which can be bound as followed to achieve what i am after
CheckBoxColumn.TrueValue = "Y";
CheckBoxColumn.FalseValue = "N";
What is the telerik equivalent?
I want to display data in the radgridview and the most natural column type for the user to use to change values in the Y N column is the checkbox column. Is there any way to bind the column so that if the db value is Y, the check box is checked and if the value is N it is unchecked (and conversly when you check and uncheck the checkbox, the data in the underlying datasource is updated to Y or N),
In the standard .net datagridview, the column has properties called TrueValue and FalseValue which can be bound as followed to achieve what i am after
CheckBoxColumn.TrueValue = "Y";
CheckBoxColumn.FalseValue = "N";
What is the telerik equivalent?