Hello Ross,
Well, yes, as soon as you set Skin="", you lose the invalid style. You can try using the OnValidating client event of the respective InputSetting, check whether the textbox is empty and apply some custom CSS styles, e.g. red text color to the respective textbox. You can obtain reference to the textbox DOM element in the OnValidating JS handler like this:
$get(args.get_input().get_id())
args is the event argument paramenter:
function MyValidatingHandler(sender, args)
{
if (args.get_input().isEmpty())
{
$get(args.get_input().get_id()).style.color = "red";
}
}
Kind 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.