Suggestions Please post your suggestions on new features here.
Kentico CMS for .NET User Groups > Suggestions > BizForm Redirect URL browser View modes: 
User avatar
Member
Member
mcutter-global-id-group - 10/23/2008 11:06:43 AM
   
BizForm Redirect URL browser
It would be nice if BizForm Properties General tab Redirect to URL had a url browser like the content html link editor does. This is not a big deal as a site-relative url of the form "~/page1/pagedone.aspx" works fine.

User avatar
Member
Member
kentico_petrp - 10/26/2008 7:44:54 PM
   
RE:BizForm Redirect URL browser
Thank you, we will consider that for future versions.

Regards,
Petr Palas, Kentico

User avatar
Member
Member
dmitry.k-markerstudio - 5/29/2013 8:53:37 PM
   
RE:BizForm Redirect URL browser
do you have any progress in this?

User avatar
Kentico Support
Kentico Support
kentico_filipl - 5/31/2013 5:33:12 AM
   
RE:BizForm Redirect URL browser
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