<div class="labels"><asp:Label ID="lblStartDate" runat="server" Text="Start Date:"></asp:Label></div>
<div class="textlabel"><telerik:RadDatePicker ID="dtStartDate" runat="server" Skin="DMID" EnableEmbeddedSkins="false"
OnSelectedDateChanged="dtStartDate_SelectedDateChanged" AutoPostBack="True" ToolTip="start date">
<Calendar UseRowHeadersAsSelectors="False" UseColumnHeadersAsSelectors="False" ViewSelectorText="x"
Skin="DMID" EnableEmbeddedSkins="False">
</Calendar>
<DatePopupButton ImageUrl="" HoverImageUrl=""></DatePopupButton>
<DateInput DisplayDateFormat="MM/dd/yyyy" DateFormat="MM/dd/yyyy" EnableEmbeddedSkins="False"
AutoPostBack="True">
</DateInput>
</telerik:RadDatePicker>
<asp:RequiredFieldValidator ID="rfvStartDate" runat="server" ControlToValidate="dtStartDate"
ErrorMessage="<label for='dtStartDate'>Start Date</label>" Text="*" Display="Dynamic"
ValidationGroup="vRequired"></asp:RequiredFieldValidator>
</div>
<div class="labels">
<asp:Label ID="lblEndDate" runat="server" Text="End Date:"></asp:Label>
</div>
<div class="textlabel">
<telerik:RadDatePicker ID="dtEndDate" runat="server" Skin="DMID" EnableEmbeddedSkins="false">
</telerik:RadDatePicker>
<asp:RequiredFieldValidator ID="rfvEndDate" runat="server" ControlToValidate="dtEndDate"
ErrorMessage="<label for='dtEndDate'>End Date</label>" Text="*" Display="Dynamic"
ValidationGroup="vRequired"></asp:RequiredFieldValidator>
</div>

Hi,
i am using a RadToolbar with multiple RadToolBarDropDown-Controls, which are using the OnLoad-Method to attach the Datasource.
My problem is that I am not able to verify, which button has been pressed, because the number of items in the drop down lists is not constant. I need a dynamic solution for this.
I am using something like to following code in the background:
Protected Sub Toolbar1_ButtonClick(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadToolBarEventArgs) Handles Toolbar1.ButtonClick Select Case e.Item.Index Case 1 dim testString as String = e.Item.Text End SelectEnd SubHello,
I am working to implement localization of a big portal. There is a lot of different telerik controls. I found that controls supports localization via Global resources and .resx files
The problems are that we are adding new languages dynamically and that number of controls is too big.
1) Is there any way how to implement translations dynamically i.e. without .resx files?
2) Is there some way how we can initialize culture globally (not for every control grid.Culture = ...) and individual for each request e.g. some global settings or something like that?
Thanks