Hi Benjamin Millspaugh,
Localization of the Value property was made to follow the established convention - all our other controls (RadTreeView, RadMenu, RadTabStrip) and some of Microsoft's have their Value property localizable. The "classic" RadTabStrip supported the same feature as well.
By the way you can use custom attributes defined inline in your ASPX like this:
<telerik:RadTabStrip runat="server" ID="RadTabStrip1" meta:resourcekey="RadTabStrip1Resource1">
<Tabs>
<telerik:RadTab Text="Corporate"
MyID="Tab1" meta:resourcekey="RadTabResource1" runat="server" Selected="True"></telerik:RadTab>
<telerik:RadTab Text="Products"
MyID="Tab2" meta:resourcekey="RadTabResource2" runat="server"></telerik:RadTab>
<telerik:RadTab Text="Services"
MyID="Tab3" meta:resourcekey="RadTabResource3" runat="server"></telerik:RadTab>
</Tabs>
</telerik:RadTabStrip>
You can use the
findTabByAttribute(
attributeName,
attributeValue) JavaScript routine to find your tabs. I hope this is a feasible workaround for you.
Regards,
Albert
the Telerik team