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
The config.xml defines the steps, but if you want to set up default values, they need to be defined in the Install.cfc.
This should be as seamless as possible for the user, so it should be in the installation steps screen but the defaults setup at the top of the installer.cfc as follows:
<!--- Download --->
<cfifthis.typeEQ"download">
<cfsetgroup.setLabel("Download video components by an URL")>
<cfsetitem=group.createItem('text', 'host','http://extbuilder.local', false, 'Provider URL', 'URL of a provider offering the necessary (FFMpeg binaries) components.')>
<!--- Upoad --->
<cfelse>
<cfsetgroup.setLabel("Video components by upload")>
<cfsetitem=group.createItem('file', 'zip','', false, 'Zip file', 'Zip file that contain the necessary (FFMpeg binaries) components.')>
</cfif>
The text was updated successfully, but these errors were encountered:
Default values for installation form fields can be set in the config.xml. If I remember correctly, the xmlText of the item tag will be used as the default value: [item ...]default value[/item]
The config.xml defines the steps, but if you want to set up default values, they need to be defined in the Install.cfc.
This should be as seamless as possible for the user, so it should be in the installation steps screen but the defaults setup at the top of the installer.cfc as follows:
The text was updated successfully, but these errors were encountered: