Created
November 9, 2015 22:41
-
-
Save ryanschuhler/169fe9e1a5beb37396f8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<#assign aui = PortletJspTagLibs["/META-INF/aui.tld"] /> | |
<#assign liferay_ui = PortletJspTagLibs["/META-INF/liferay-ui.tld"] /> | |
<#setting number_format="computer"> | |
<@aui["fieldset"]> | |
<@aui["select"] name="persona"> | |
<@aui["option"] label="business-decision-maker" selected=(persona == "business-decision-maker") value="business-decision-maker" /> | |
<@aui["option"] label="business-end-user" selected=(persona == "business-end-user") value="business-end-user" /> | |
<@aui["option"] label="technical-decision-maker" selected=(persona == "technical-decision-maker") value="technical-decision-maker" /> | |
<@aui["option"] label="technical-end-user" selected=(persona == "technical-end-user") value="technical-end-user" /> | |
</@> | |
</@> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment