I've got a control based on the RadTextbox.
My control has a IsMandatory property and I'm doing something like this in the control...
This works a treat.
Except when the skin is Black. The black skin renders an image in the background of the textbox.
I need to supress this when my input control has IsMandatory = true
--
Stuart
My control has a IsMandatory property and I'm doing something like this in the control...
protected
override
void
OnPreRender(EventArgs e)
{
base
.OnPreRender(e);
if
(isMandatory)
{
RadTextBox1.EnabledStyle.BackColor = System.Drawing.Color.Pink;
}
}
Except when the skin is Black. The black skin renders an image in the background of the textbox.
I need to supress this when my input control has IsMandatory = true
--
Stuart