This is a migrated thread and some comments may be shown as answers.

Customize Kendo UI Validations

1 Answer 67 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Tejas
Top achievements
Rank 1
Tejas asked on 19 May 2014, 11:12 AM
We are using Kendo UI Controls and its Validations.

Now the problem is the Kendo validations are not working in manner like MVC validations.

I want to know how to get kendo validation working like the way Classic MVC validations works.

Following is the scenario which I would like to achieve by either of ways.

--- Kendo UI Validation raise popup beneath the controls whenever validations occurs. And I don't want required field error message like tool tip or popup.

I want to have simple red border around the control (drop-down list or text box) if I m not selecting any item from drop-down list and submit the button.

So I want to avoid that popup/tooltip situation whenever validations fires.

1 Answer, 1 is accepted

Sort by
0
Daniel
Telerik team
answered on 21 May 2014, 11:01 AM
Hello,

Not showing the tooltips is not supported by the validator but it is possible to use CSS to hide them:
.k-tooltip-validation.k-invalid-msg
{
    display:none !important;
}
Please check this documentation topic for information about applying a style to the widgets with invalid value.

Regards,
Daniel
Telerik
 
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
 
Tags
General Discussions
Asked by
Tejas
Top achievements
Rank 1
Answers by
Daniel
Telerik team
Share this question
or