Hi Harry,
RadFormDecorator decorates only textboxes, which do not have a CSS class. The idea is that if a textbox has a CSS class, then probably it is styled by some other styles.
In order to apply a right text alignment to the decorated textboxes, you can use CSS selectors with
HTML elements instead of CSS classes, for example:
.SomeContainer input
{
text-align: right;
}
"SomeContainer" is a CSS class of an element, which wraps the textboxes.
Regards,
Dimo
the Telerik team
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Public Issue Tracking
system and vote to affect the priority of the items.