Hey everyone new to DNN and I'm attempting to convert some of my controls to DNN.
I read through all the documentation and I can't seem to find why my ListBox and CheckBoxList ListItem's are not localizing correctly in DNN4. The DropDownList and RadioButtonList localize correctly but not the ListBox and CheckBoxList.
I can't find anything in the forums through searching and nothing directly references to it in any of the documentation. Alas even my google search yeild no findings so it must be something easy that I am just doing incorrectly.
<asp:ListBox ID="ListBox1" runat="server" Rows="1">
<asp:ListItem resourcekey="TestResults" Value="1">Text</asp:ListItem> (Doesn't Work)
</asp:ListBox>
<asp:DropDownList ID="DropDownList1" runat="server">
<asp:ListItem resourcekey="TestResults" Value="1">Text</asp:ListItem> (Works)
</asp:DropDownList>
<data name="TestResults.Text">
<value>Localized Text</value>
</data>
Any help and direction would be appreciated
-Josh