Hi, how can i iterate to the items in AutoCompleteBox with Checkbox? I would like to get the email with checked. Thanks in advance.
im using this code in to add checkbox in AutoCompleteBox.
public class MyTokenizedTextBlockElement : TokenizedTextBlockElement
{
private RadCheckBoxElement checkBox;
protected override Type ThemeEffectiveType
{
get
{
return typeof(TokenizedTextBlockElement);
}
}
protected override void CreateChildElements()
{
base.CreateChildElements();
int index = this.Children.IndexOf(this.RemoveButton);
this.checkBox = new RadCheckBoxElement();
this.checkBox.StretchVertically = true;
this.checkBox.StretchHorizontally = false;
this.checkBox.Checked = true;
this.Children.Insert(index, this.checkBox);
}
}
im using this code in to add checkbox in AutoCompleteBox.
public class MyTokenizedTextBlockElement : TokenizedTextBlockElement
{
private RadCheckBoxElement checkBox;
protected override Type ThemeEffectiveType
{
get
{
return typeof(TokenizedTextBlockElement);
}
}
protected override void CreateChildElements()
{
base.CreateChildElements();
int index = this.Children.IndexOf(this.RemoveButton);
this.checkBox = new RadCheckBoxElement();
this.checkBox.StretchVertically = true;
this.checkBox.StretchHorizontally = false;
this.checkBox.Checked = true;
this.Children.Insert(index, this.checkBox);
}
}