Our client has asked us if we could translate the dropdown content within a selection block.
however i have not been succesful. The new Culture Specific selection block is available to select from in the form container, however when i attempt to translate the content it doesnt seem to override the option field i have create below. Does anyone know what the cause might be for this?
Selection Element
[ContentType(DisplayName = "Culture Specific SelectionBlock",
GUID = "02c28355-1f97-4090-b367-15b68186e816",
Description = "Use when you need to options in another language",
GroupName = "Custom Elements")]
public class SelectionElement : SelectionElementBlock
{
[DisplayName("Culture Specific Options")]
[Display(Order = 10)]
[CultureSpecific]
public override IEnumerable<OptionItem> Items { get; set; }
}
Hi,
Our client has asked us if we could translate the dropdown content within a selection block.
however i have not been succesful. The new Culture Specific selection block is available to select from in the form container, however when i attempt to translate the content it doesnt seem to override the option field i have create below. Does anyone know what the cause might be for this?
Selection Element
Selection Element.cshtml
SelectionComponent:
Does anyone know what i may be doing wrong here?
Thanks