I have table with custom field based on GridDataCellElement.
Now in this field RadLabelElement and two RadButtonElement shown. All OK.
But when I am try to add RadCheckBoxElement - all field will shown empty.
How can I fix it?
Now in this field RadLabelElement and two RadButtonElement shown. All OK.
But when I am try to add RadCheckBoxElement - all field will shown empty.
protected
override
void
CreateChildElements()
{
// ... init elements
this
.Children.Add(radLabel);
// ok
this
.Children.Add(radbtnColor);
// ok
this
.Children.Add(radbtnFont);
// ok
this
.Children.Add(
new
RadCheckBoxElement());
// GridDataCellElement will shown empty if this line not removed
}
How can I fix it?