mdbootstrap / bootstrap-templates

A collection of free Bootstrap 5 templates.
https://mdbootstrap.com/freebies/
3.07k stars 1.01k forks source link

validation #635

Closed sadhnaprajapati closed 2 years ago

sadhnaprajapati commented 6 years ago

is there any way to add formula validation with error message.

sunknudsen commented 6 years ago

Hey @sadhnaprajapati,

Currently, I don’t believe there is.

That being said, validation should be pretty easy to implement using the beforeItemAdd event.

$('input').on('beforeItemAdd', function(event) {
  // event.item: contains the item
  // event.cancel: set to true to prevent the item getting added
});

Hope this helps!