Umbraco 7 Get the Text and Value from a Radio List
1) This snippet example shows you how to get the Text value of a radio list option in Umbraco 7:
@umbraco.library.GetPreValueAsString(CurrentPage.optionalLayouts)
2 ) This snippet example shows you how to get the Value of a radio list option in Umbraco 7:
@CurrentPage.optionalLayouts
note: "optionalLayouts" is the field name in the Umbraco back end in this example.
@umbraco.library.GetPreValueAsString(CurrentPage.optionalLayouts)
2 ) This snippet example shows you how to get the Value of a radio list option in Umbraco 7:
@CurrentPage.optionalLayouts
note: "optionalLayouts" is the field name in the Umbraco back end in this example.
Comments
Post a Comment