Hello,
There is an easy way how to achieve this functionality.
All you need to do is just register a new
Select path selector form control in
~\CMSModules\Bizforms\Tools\BizFormEditGeneral.aspx file and then replace TextBox control with this path selector.
It could look like this:
Registration -
<%@ Register Src="~/CMSModules/Content/FormControls/Documents/selectsinglepath.ascx" TagName="SelectPathSelector" TagPrefix="cms" %>
Replace
<%--<cms:CMSTextBox ID="txtRedirect" runat="server" MaxLength="200" CssClass="TextBoxField" />--%>
with
<cms:SelectPathSelector ID="txtRedirect" runat="server" MaxLength="200" CssClass="TextBoxField" />
Best regards,
Filip Ligac