I was wondering if it\'s possible to set the checked propery of a checkbox, using a bool variable form the repeater\'s datasource?
I\'ve tried several ways but witho
Another solution is handling ItemDataBound event:
...
protected void rpt_ItemDataBound(object sender, RepeaterItemEventArgs e)
{
RepeaterItem ri = e.Item;
var dataItem = ri.DataItem as YourClassOrInterface;
var isDefaultCheckBox = ri.FindControl("isDefaultCheckBox") as CheckBox;
isDefaultCheckBox.Checked = dataItem.IsDefault;
}