-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Events list #909
Comments
From events.js ... const events = { Note: With the exception of fieldRendered, these all seem to be dispatched on the document. |
Wouldn't it be better to dispatch the event on the DOM element or the jQuery object? Then you could listen for events like $('#myForm).formBuilder({})
.on('loaded', function(event, data) { console.log(data); }); The events on the document do not appear to have any data associated with them. |
Perhaps for a future version, the events could be more specific to formBuilder (or formRender), e.g.
|
@tacman |
Please I have a question. Does JQuery FB allow us add custom event handlers to our form-controls/inputs/select? I'm looking at binding these events on the client facing side..... |
Is there a place where events fired by the plugin are listed ? documented ? :)
The text was updated successfully, but these errors were encountered: