I want to validate input type hidden
I add this :
product: {
ignore: "",
rules: {
description: {
required: true
},
...
},
},
It works. I success validate input type hidden
But in my form, it need to validate summernote too
I get some reference to validate summernote and the ignore must changed like this :
ignore: ":hidden:not(#summernote),.note-editable.panel-body"
It works. But the validate input type hidden not works
So if I use : ignore: ""
, the summernote validate not works
If I use : ignore: ":hidden:not(#summernote),.note-editable.panel-body"
, the input type hidden not works
How do I merge it so that both (input type hidden and summernote) can work fine?