I am trying to set up an html button that when clicked will show a different pagination tab on my form.
I am using this javascript and using the fieldID shown on the tab when in the modern designer form editor. This code works to show an individual field on a form but does nothing with the Tabs.
I am trying to provide a submit button of sorts at the bottom of the page to allow the user to navigate to a specific tab.
The console seems to show nothing with respect to the onclick even on the fields on same page where it does work, any suggestions or alternative approaches appreciated.
window.clickButtonFunction = function () {
LFForm.showFields({fieldId: 119});
};
Peter