Hi,
is there known problem of radbutton not showing image until hover is off with IE9?
I have RadButton in one page where is also RadEditor:
<telerik:RadButton ID="ibtnSave" runat="server" CausesValidation="false" Width="43px" Height="43px" Text="<%$ Resources:ibtnSave %>" UseSubmitBehavior="false">
<Image ImageUrl="images/save.gif" EnableImageButton="true" />
</telerik:RadButton>
When I go to the page the button is there but the image is not showing. When you go over the button with mouse and go off then image turns visible.
Only the 1st page has any rows, so what am I missing? Here's the code:
<telerik:RadGrid ID="RadGridHistPats" runat="server" AutoGenerateColumns="False" Skin="Outlook" AllowPaging="true" PageSize="10"> <MasterTableView > <Columns> <telerik:GridBoundColumn DataField="PatientID" HeaderText="PatientID" UniqueName="PatientID"> </telerik:GridBoundColumn> </Columns> </MasterTableView></telerik:RadGrid>
protected void Page_Load(object sender, EventArgs e){ if (!IsPostBack) { DataTable dt = new DataTable(); dt.Columns.Add("PatientID"); for (int iCount = 0; iCount < 200; iCount++) { DataRow dr = dt.NewRow(); dr["PatientID"] = iCount.ToString(); dt.Rows.Add(dr); } RadGridHistPats.DataSource = dt; RadGridHistPats.DataBind(); }}

<telerik:RadComboBox runat="server" ID="dropdown1" CloseDropDownOnBlur="true" EnableAjaxSkinRendering="true" EnableTextSelection="true" ShowWhileLoading="true" EnableLoadOnDemand="true" OnClientItemsRequesting="OnClientItemsRequesting" ShowMoreResultsBox="true" MinFilterLength="3" EnableVirtualScrolling="true" EmptyMessage="Type refresh values..." Width="380" Height="250"> <WebServiceSettings Path="/Services/service.svc" Method="FillFristDrop" /> </telerik:RadComboBox> <telerik:RadComboBox runat="server" ID="dropdown2" CloseDropDownOnBlur="true" EnableAjaxSkinRendering="true" EnableTextSelection="true" ShowWhileLoading="true" EnableLoadOnDemand="true" OnClientItemsRequesting="OnClientItemsRequesting" ShowMoreResultsBox="true" MinFilterLength="3" EnableVirtualScrolling="true" EmptyMessage="Type refresh values..." Width="380" Height="250"> <WebServiceSettings Path="/Services/service.svc" Method="FillSecondDrop" /> </telerik:RadComboBox> <telerik:RadComboBox runat="server" ID="dropdown3" CloseDropDownOnBlur="true" EnableAjaxSkinRendering="true" EnableTextSelection="true" ShowWhileLoading="true" EnableLoadOnDemand="true" OnClientItemsRequesting="OnClientItemsRequesting" ShowMoreResultsBox="true" MinFilterLength="3" EnableVirtualScrolling="true" EmptyMessage="Type refresh values..." Width="380" Height="250"> <WebServiceSettings Path="/Services/service.svc" Method="FillThirdDrop" /> </telerik:RadComboBox> <script language="javascript" type="text/javascript"> function OnClientItemsRequesting(sender, e) { var context = e.get_context(); context["UpdateKeys"] = UpdateKeys(); } function UpdateKeys() { return values // return remaing 2 dropdown selected value }</script><asp:MultiView ID="MLVeditor" runat="server" ActiveViewIndex="0"> <asp:View ID="VIWnone" runat="server"> </asp:View> <asp:View ID="VIWtextareaEditor" runat="server"> <CTRL:TextareaEditor id="CTRLtextarea" runat="server"></CTRL:TextareaEditor> </asp:View> <asp:View ID="VIWliteEditor" runat="server"> <CTRL:LiteEditor id="CTRLliteEditor" runat="server"></CTRL:LiteEditor> </asp:View> <asp:View ID="VIWtelerikEditor" runat="server"> <CTRL:TelerikEditor id="CTRLtelerikEditor" runat="server"></CTRL:TelerikEditor> </asp:View></asp:MultiView><telerik:radeditor ID="RDEtelerik" runat="server" Visible="true" Width="800px" Height="200px"> </telerik:radeditor>
And result is:
<div id="ctl00_CPHservice_CTRLeditorQ_CTRLtelerikEditor_RDEtelerik" style="height:200px;width:800px;">
<!-- 2013.1.403.35 --> </div>
<asp:MultiView ID="MLVeditor" runat="server" ActiveViewIndex="0"> <asp:View ID="VIWnone" runat="server"> </asp:View> <asp:View ID="VIWtextareaEditor" runat="server"> <CTRL:TextareaEditor id="CTRLtextarea" runat="server"></CTRL:TextareaEditor> </asp:View> <asp:View ID="VIWliteEditor" runat="server"> <CTRL:LiteEditor id="CTRLliteEditor" runat="server"></CTRL:LiteEditor> </asp:View> <asp:View ID="VIWtinyEditor" runat="server"> <CTRL:TinyEditor id="CTRLtinyEditor" runat="server"></CTRL:TinyEditor> </asp:View> <asp:View ID="VIWtelerikEditor" runat="server"> <telerik:radeditor ID="Radeditor1" runat="server" Visible="true" Width="800px" Height="450"> </telerik:radeditor> </asp:View></asp:MultiView>

Hi Telerik,
We have problem with RadGrid localization. Our web page (which contains the RadGrid) is localized by local resources using the functionality „Generate Local Resource“. Applying such function adds the meta information into the RadGrid. Thus, here is the problem. The RadGrid doesn’t work correctly with those meta information. So, when the AJAX is used the RadGrid doesn’t load the data, or more exactly in other words: the “NeedDataSource” event is not fired and therefore the RadGridData_NeedDataSource handler is not called.
Here is the code snippet of our implementation:
protected void Page_Load(object sender, EventArgs e)
{
RadAjaxManager.GetCurrent(this.Page).AjaxSettings.AddAjaxSetting(RadGridData, RadGridData, RadAjaxLoadingPanel);
if (IsPostBack == false)
RadGridData.Rebind();
}
protected void RadGridData_NeedDataSource(object sender, GridNeedDataSourceEventArgs e)
{
DataTable dataTable = GetObjectData();
RadGridData.DataSource = dataTable;
}
If the meta information are deleted, the RadGrid works normally again. The other telerik controls are localized as well, and they’re working normally. If we keep at least one meta information at some place, the problem appears again.
We found an example of using Global resources for telerik controls localization on your websites. We’ve tried it, however it didn’t make desired effect. We’ve copied the file RadGrid.Main. sk-SK.resx into the App_GlobalResources folder. Although the entire page is localized, the RadGrid is not. In addition, these settings is not working although the property (Culture = "sk-SK") is set directly.
Is there any way to perform mentioned localization using the ‘local resources‘ approach?
Thank you very much for your advice.
Kind regards,
SCT