Topic: How To Change Boolean combobox to checkbox in Tablegrid

How to change value display boolean type in tablegrid
from combobox Yes/No
to checkbox or change "aaa","bbb" ? help me please

My Visual Database : I Love You
Easy For Beginner Student For Me

Re: How To Change Boolean combobox to checkbox in Tablegrid

Hi prahousefamily,
.
Someone else might be able to help you with the checkbox part.  I have not seen that done before as a tableGrid control-  though I would be curious if this is possible as well.
.
As far as changing the values presented in the tableGrid, this is one way to do it.  Create an extra calculatedField in your table containing this line:

case boolField when 1 then 'aaa' when 0 then 'bbb ' else '' end

.
Changing the boolField to the name of your actual boolean field, and the 'aaa' and 'bbb' to the values corresponding to the 1 and 0.
.
Hope this gets you started,
-joshuA

"Energy and persistence conquer all things."