Hi, in search input with class .search_init when the control fires the blur event and you don't write anything the file vendor/ali/datatable/Ali/DatatableBundle/Resources/views/Internal/script.html.twig delete all classes (.form-control and .input-sm) leaving only .search_init in text-field.
.blur( function (i) {
if ( this.value == "" ){
this.className = "search_init";
this.value = this.initVal;
}
})
Hi, in search input with class
.search_init
when the control fires theblur
event and you don't write anything the filevendor/ali/datatable/Ali/DatatableBundle/Resources/views/Internal/script.html.twig
delete all classes (.form-control and .input-sm) leaving only.search_init
in text-field.What is the best solution for this issue?
Thanks in advance. WK