You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From conversation on 2/24/2019 confirmed there is no API at this time for programmatic launch of a modal form in UF_FormGenerator. The methods that do it are private behind the existing API.
In my case, I don't have a button and don't have an anchor tag in the UI that a click event can be bound to in the normal way. Instead, I need to launch the modal form from javascript in a custom event handler function provided by a context menu framework I'm using.
Enhancement request: Provide a public method that displays the modal form so that click event element binding is not required. For example ...
formGenerator.displayForm(options) { ... }
The text was updated successfully, but these errors were encountered:
The _fetchForm private method (private, so can't be called manually) should be refactored, mostly to remove the event argument and provide normal options instead. The display method should be refactored and define the click event as an option. It could also be renamed to something clearer (with keywords like attach or bind) to make it clearer it purpose is to bind something to the element it's applied on.
From conversation on 2/24/2019 confirmed there is no API at this time for programmatic launch of a modal form in UF_FormGenerator. The methods that do it are private behind the existing API.
In my case, I don't have a button and don't have an anchor tag in the UI that a click event can be bound to in the normal way. Instead, I need to launch the modal form from javascript in a custom event handler function provided by a context menu framework I'm using.
Enhancement request: Provide a public method that displays the modal form so that click event element binding is not required. For example ...
The text was updated successfully, but these errors were encountered: