Questions tagged [kendo-validator]

Kendo UI is an HTML5, jQuery-based framework for building modern web apps.

Kendo UI is an HTML5, jQuery-based framework for building modern web apps. The framework features lots of UI widgets, a rich data vizualization framework, an auto-adaptive Mobile framework, and all of the tools needed for HTML5 app development, such as Data Binding, Templating, Drag-and-Drop API, and more.

Kendo UI comes in different bundles:

  • Kendo UI Web - HTML5 widgets for desktop browsing experience.
  • Kendo UI DataViz - HTML5 data vizualization widgets.
  • Kendo UI Mobile - HTML5 framework for building hybrid mobile applications.
  • Kendo UI Complete - includes Kendo UI Web, Kendo UI DataViz and Kendo UI Mobile.
  • Telerik UI for ASP.NET MVC - Kendo UI Complete plus ASP.NET MVC wrappers for Kendo UI Web, DataViz and Mobile.
  • Telerik UI for JSP - Kendo UI Complete plus JSP wrappers for Kendo UI Web and Kendo UI DataViz.
  • Telerik UI for PHP - Kendo UI Complete plus PHP wrappers for Kendo UI Web and Kendo UI DataViz.

See more:


Related tags

61 questions
5
votes
1 answer

Clear Kendo Validator error messages

I have a form with multiple controls, the validation condition is set in the model using regular expressions, when the condition does't met the error messages shown beside the control. I have another button to clear the validation error messages.…
GANI
  • 2,013
  • 4
  • 35
  • 69
4
votes
1 answer

How to validate multiple email with kendo validator?

I would like to validate the email addresses with input html kendo. This is my html code:
Federico
  • 342
  • 8
  • 30
4
votes
2 answers

asp-for tag adds required field validation on checkbox in asp.net core

I have asp.net core application and im trying to add simple checkbox without any validation. Checkbox is bound to boolean property on model. Below is the code Model public class MyModel { public bool IsEmployee { get; set; } } cshtml …
LP13
  • 30,567
  • 53
  • 217
  • 400
3
votes
3 answers

kendoValidator() causes “The field xxx must be a date” error when using DatePicker

Im my MVC5 application selecting date in "dd/MM/yyyy" format causes "The field xxx must be a date" error. On the other hand, if I comment kendoValidator() line as below the error has gone, but in that case I cannot perform client side validation and…
2
votes
4 answers

Is there any way to check whether form is dirty or not in JavaScript?

I have one form validator example in java script. In this case, Is there any way to check whether the form is dirty or not? My platform is JavaScript Please find corresponding sample below, and suggest any solution. sample link code snipet: i have…
Kumaresan Sd
  • 1,399
  • 4
  • 16
  • 34
2
votes
1 answer

Kendo validator not working on text change

I am using kendo controls for my project. I was using jquery validation to validate my controls at client side but as jquery validation is not working for kendo controls so I am using kendo validators to validate the controls. I am using…
Manprit Singh Sahota
  • 1,279
  • 2
  • 14
  • 37
2
votes
1 answer

Kendo Validate - Ignore Specific Inputs

I am using Kendo validation to do some light front end validation. I am using an external API, that does the back end validation for me, so I only need to validate a few inputs for format/required. Currently, it is validating every input. How can I…
Mark
  • 4,773
  • 8
  • 53
  • 91
2
votes
1 answer

Dynamically change error messages in Kendo UI validator?

think I have a 2 text fields. Can I change there error messages according to text fields. Here is a example. 1st text box is a email field and it is required field. So I keep it a error messages in a array : ["this field is required", "enter a valid…
NoughT
  • 675
  • 4
  • 20
  • 39
2
votes
2 answers

Prevent numerical values in kendo textbox

I am creating a sample book library application using asp.net MVC in which i am using kendo UI tools, i want use Book title or author fields in which i want to prevent a user from entering numerical values, allowing only A-Z, how will i use…
2
votes
2 answers

Is there a way to change the position of validation message

Although the validation messages in my project are positioned properly (just on the right side) for Textbox, Dropdownlist, etc. one of them is positioned on the left bottom for Editor and the position cannot be changed. So, is there a way to change…
2
votes
2 answers

Kendo UI validation message breaks bootstrap layout

I have a form to collect user information which is designed using bootstrap. I am using Kendo UI validation for validating user input. This is a portion of the form. Html for the first line of the form.
user3731783
  • 718
  • 1
  • 7
  • 31
2
votes
1 answer

Kendo UI Validator - Handling inputs with identical name attributes

I currently have a form similar to the below:
Fillip Peyton
  • 3,637
  • 2
  • 32
  • 60
2
votes
4 answers

Kendo UI validator error message not correctly positioned

I'm trying to validate a contact form using KendoUI, but I have a problem with Kendo Validator, the validation message is not apearing where it should appear that is next to each field, it is appearing just next to the first field where I click when…
Andrés Orozco
  • 2,490
  • 5
  • 32
  • 48
2
votes
1 answer

KendoUI ComboBox Required Validation not triggered when value of primary datasource is null

Problem: I have a kendoui ComboBox that is setup for auto-complete with a Primary Data Source (the record being edited) and a Secondary DataSource (the data for the auto-complete). The Primary Data Source has a schema with the…
user2109254
  • 1,709
  • 2
  • 30
  • 49
1
vote
1 answer

Kendo UI Validation Error message being placed on wrong field

AS my question says when I intentionally enter in a string that contains invalid characters, and the problem is that its placing the error message on the incorrect field.. So if you placed 87/9*8-=+ (or something to that effect) in the Zip field…
Chris
  • 2,953
  • 10
  • 48
  • 118
1
2 3 4 5