Are you using a DataSet? Set in the XML of the DataTable a default value: <
.... default=false>
"nick" <no@no.com> schrieb im Newsbeitrag
news:7bch20pp3e1k16k6irhk5vsps8rckcs6om@4ax.com...
[quoted text, click to view] > How do I make the bool column "unchecked" by default instead of
> "greyed out" (indeterminate)? Here's the code for the bool column:
>
> BoolColFinished = new DataGridBoolColumn();
> BoolColFinished.MappingName = "finished";
> BoolColFinished.HeaderText = "done";
> BoolColFinished.FalseValue = false;
> BoolColFinished.TrueValue = true;
> BoolColFinished.AllowNull = false;