Set Editor defaults
Set Editor defaults
Loren Maxwell
Posts: 406Questions: 99Answers: 10
in Editor
For all my Editor forms, I'm trying to set the default for formOptions.main.onBlur
to 'none'
.
I've been through a half a dozen or so variations of the following, but don't seem to be able to stumble across the exact statement I need to make:
$.extend( true, $.fn.dataTable.Editor.formOptions, {
main: {
onBlur: 'none'
}
});
What would be the correct way to update the defaults?
This question has an accepted answers - jump to answer
Answers
should do it.
Allan
Thanks, @allan!
Works great after just a slight correction to
$.fn.dataTable.Editor.defaults
:Oh sorry yes. I was thinking of a module import.
DataTable.Editor.defaults
would work in the browser as well as$.fn.dataTable
.Allan