Hi,
i'm validaitin my Item with "ValidatinItem="MyForm_ValidatinItem":
This Works fine, but is it possible to chance the background of this fild now? Or set a border with Tooltip? And how do i stop the Comit if the Validation is false?
Thanks Best Regards
Rene
i'm validaitin my Item with "ValidatinItem="MyForm_ValidatinItem":
private void VerbindungForm1_ValidatingItem(object sender, System.ComponentModel.CancelEventArgs e)
{
var employer = this.VerbindungForm1.CurrentItem as Verbindungen;
if (employer.Name.Count() < 1)
{
RadWindow.Alert("You have to enter a " + employer.Name);
}
}
This Works fine, but is it possible to chance the background of this fild now? Or set a border with Tooltip? And how do i stop the Comit if the Validation is false?
Thanks Best Regards
Rene