<location path="Telerik.Web.UI.WebResource.axd"> <system.web> <authorization> <allow users="*"/> </authorization> </system.web></location>.formContainer{ float:left; margin:-6px 0px 0px 0px; width:450px;}.formContainer input[type=password]{ width:300px;}.formContainer input[type=text]{ padding-left:3px; width:298px;}.formContainer label{ float:left; clear:left; text-align:left; width:130px;}.formContainer textarea{ width:300px;}using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;namespace Demo{ public partial class Default : System.Web.UI.Page { protected override void OnLoad(System.EventArgs e) { base.OnLoad(e); } protected void OnLogin(object sender, System.EventArgs e) { try { System.Threading.Thread.Sleep(3000); } catch (System.Exception ex) { } } }}<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Demo.Default" %><!doctype html><html><head> <link href="App_Themes/Basic/Style.css" rel="stylesheet" type="text/css" /> <meta charset="utf-8" /> <meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible" /> <meta content="width=device-width,initial-scale=1" name="viewport" /> <title>Flowtivity</title></head><body> <form runat="server"> <asp:ScriptManager runat="server" /> <telerik:RadAjaxManager runat="server" ID="MainAjaxManager" DefaultLoadingPanelID="MainLoadingPanel"> <AjaxSettings> <telerik:AjaxSetting AjaxControlID="LoginButton"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="MainFormPanel" /> </UpdatedControls> </telerik:AjaxSetting> <telerik:AjaxSetting AjaxControlID="MainFormPanel"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="MainFormPanel" /> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings> <ClientEvents OnRequestStart="onRequestStart" OnResponseEnd="onResponseEnd" /> </telerik:RadAjaxManager> <telerik:RadAjaxLoadingPanel runat="server" ID="MainLoadingPanel" /> <telerik:RadInputManager runat="server" ID="MainInputManager"> <telerik:TextBoxSetting InitializeOnClient="true"> <TargetControls> <telerik:TargetInput ControlID="MainFormPanel" /> </TargetControls> </telerik:TextBoxSetting> </telerik:RadInputManager> <asp:Panel runat="server" ID="MainFormPanel"> <div class="formContainer"> <!--Remove CSS from this DIV and the RadLoadingPanel will display on postback--> <p> <label> Email:</label> <asp:TextBox runat="server" ID="EmailTextBox" Text="" /></p> <p> <label> Password:</label> <asp:TextBox runat="server" ID="PasswordTextBox" TextMode="Password" /></p> </div> </asp:Panel> <div> <telerik:RadButton runat="server" ID="LoginButton" Text="Login" Width="90px" OnClick="OnLogin" OnClientClicking="onLogin" /> </div> <telerik:RadScriptBlock runat="server"> <script type="text/javascript"> function onLogin(sender, e) { } function onRequestStart() { var btn = document.getElementById('<%= LoginButton.ClientID %>'); btn.disabled = true; } function onResponseEnd() { var btn = document.getElementById('<%= LoginButton.ClientID %>'); btn.disabled = false; } </script> </telerik:RadScriptBlock> </form></body></html>Telerik.Web.UI, Version=2009.3.1103.20 and we are upgrading our VS 2005 application to VS 2010. We are facing many problems in RadCombobox, TabStrip, Hierarchy Grid functionalities.
How to go about this?
<telerik:RadGrid ID="radGridPermission" runat="server" Skin="Office2007" AutoGenerateColumns="false" AllowPaging="false" AllowSorting="true" Width="99%" > <GroupingSettings CaseSensitive="false" /> <ExportSettings OpenInNewWindow="true" > <Pdf FontType="Link" PaperSize="A4" /> <Excel Format="Html" /> <Csv ColumnDelimiter="Comma" RowDelimiter="NewLine" /> </ExportSettings> <ClientSettings> <ClientEvents OnRowSelected="P_OnRowSelected" OnRowDeselected="P_OnRowDeselected" OnRowCreating="P_OnRowCreating" OnRowCreated="P_OnRowCreating" /> <Scrolling AllowScroll="true" FrozenColumnsCount="2" UseStaticHeaders="true"/> </ClientSettings> <MasterTableView ShowHeader="true" AllowFilteringByColumn="false" ClientDataKeyNames="UserId" ItemStyle-CssClass="UseHand"> <PagerTemplate> <uc1:gridFooter ID="gridFooter" runat="server" /> </PagerTemplate> <Columns> columns hereThis is code behind settings in a common function used by all grids on entire website. grid.PageSize = GetGridPageSize; // this is 10 grid.PagerStyle.Mode = PagerMode; grid.PagerStyle.PageButtonCount = GetGridPageSize; grid.AllowPaging = true; grid.MasterTableView.AllowFilteringByColumn = false; grid.PagerStyle.AlwaysVisible = true; grid.ClientSettings.EnableRowHoverStyle = true; grid.MasterTableView.TableLayout = GridTableLayout.Auto; grid.MasterTableView.HierarchyDefaultExpanded = false; grid.ClientSettings.Selecting.AllowRowSelect = true; grid.ExportSettings.Pdf.PaperSize = GetPageSize;
Problem is in IE9 compat mode and IE7
Hi,
I have created lots of custom web part using Telerik controls in MOSS 2007 with telerik.web.UI.dll version 2009.3.1208.20 and system.web.extension dll version 1.0.61025.0.My company has purchased Telerik license for dll version 2009.3.1208.20.
My problem is that one of our clients wants to deploy Bamboo web parts and our custom web parts in same site. The bamboo web parts are using following version of Telerik dll.
2008.3.1125.20
2010.1.415.35
2009.3.1103.20
2009.1.402.20
3.5.0.0 (system.web.extension)
If our client will deploy bamboo web parts in the same site where we deployed our custom web parts with Telerik dll version 2009.3.1208.20, so is there will be any impact on our web parts? If yes, Please provide any solution for that ASAP because it’s very urgent for our client.
waiting for your reply at earliest
Thanks,
Divya