or
<telerik:RadAsyncUpload ID="RadUpload1" ControlObjectsVisibility="None" MultipleFileSelection="Automatic" MaxFileInputsCount="4" TemporaryFileExpiration="01:00:00" runat="server"/>this._RadGrid1.ClientSettings.Selecting.AllowRowSelect = true; this._RadGrid1.AllowMultiRowSelection = true; this._RadGrid1.ClientSettings.AllowGroupExpandCollapse = true; this._RadGrid1.ClientSettings.AllowKeyboardNavigation = true; this._RadGrid1.EnableGroupsExpandAll = true; this._RadGrid1.EnableHeaderContextFilterMenu = true; this._RadGrid1.GroupingEnabled = true; this._RadGrid1.ShowGroupPanel = true; this._RadGrid1.AllowFilteringByColumn = false; this._RadGrid1.MasterTableView.HierarchyDefaultExpanded = true; this._RadGrid1.MasterTableView.EnableHeaderContextMenu = true; this._RadGrid1.MasterTableView.EnableHeaderContextFilterMenu = true; this._RadGrid1.MasterTableView.NoMasterRecordsText = "No BAN Assignments found"; this._RadGrid1.MasterTableView.DataKeyNames = new string[] { this._PriceDealProductBanTable.PriceDealEntityProductItemIdColumn.ColumnName }; this._RadGrid1.MasterTableView.ClientDataKeyNames = new string[] { this._PriceDealProductBanTable.PriceDealEntityProductItemIdColumn.ColumnName }; this._RadGrid1.NeedDataSource += RadGrid1_NeedDataSource;templateColumn = new GridTemplateColumn();templateColumnName = this._PriceDealProductBanTable.BillingAccountNumberColumn.ColumnName;this._RadGrid1.MasterTableView.Columns.Add(templateColumn);templateColumn.ItemTemplate = new TextBoxTemplate(templateColumnName);templateColumn.HeaderText = "BAN";templateColumn.DataField = templateColumnName; templateColumn.Groupable = false;<telerik:RadScriptManager ID="RadScriptManager1" runat="server"> <Scripts> <%--Needed for JavaScript IntelliSense in VS2010--%> <%--For VS2008 replace RadScriptManager with ScriptManager--%> <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.Core.js" /> <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQuery.js" /> <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQueryInclude.js" /> </Scripts></telerik:RadScriptManager><telerik:RadWindowManager ID="RadWindowManager1" runat="server" Style="z-index: 7500" /><script type="text/javascript"> //RADCONFIRM BLOCK THREAD SCRIPT //MAKE SURE THAT THE FOLLOWING SCRIPT IS PLACED AFTER THE RADWINDOWMANAGER DECLARATION //Replace old radconfirm with a changed version. var oldConfirm = radconfirm; //TELERIK //window.radconfirm = function(text, mozEvent) //We will change the radconfirm function so it takes all the original radconfirm attributes window.radconfirm = function (text, mozEvent, oWidth, oHeight, callerObj, oTitle) { var ev = mozEvent ? mozEvent : window.event; //Moz support requires passing the event argument manually //Cancel the event ev.cancelBubble = true; ev.returnValue = false; if (ev.stopPropagation) ev.stopPropagation(); if (ev.preventDefault) ev.preventDefault(); //Determine who is the caller callerObj = ev.srcElement ? ev.srcElement : ev.target; //Call the original radconfirm and pass it all necessary parameters if (callerObj) { //Show the confirm, then when it is closing, if returned value was true, automatically call the caller's click method again. var callBackFn = function (arg) { if (arg) { callerObj["onclick"] = ""; if (callerObj.click) callerObj.click(); //Works fine every time in IE, but does not work for links in Moz else if (callerObj.tagName == "A") //We assume it is a link button! { try { eval(callerObj.href) } catch (e) { } } } } //TELERIK //oldConfirm(text, callBackFn, 300, 100, null, null); //We will need to modify the oldconfirm as well oldConfirm(text, callBackFn, oWidth, oHeight, callerObj, oTitle); } return false; } </script><div> <telerik:RadGrid ID="RadGrid1" runat="server" AutoGenerateColumns="false" AllowMultiRowSelection="true"> <ClientSettings EnableRowHoverStyle="true"> <Selecting AllowRowSelect="true" EnableDragToSelectRows="false" /> </ClientSettings> <MasterTableView CommandItemDisplay="Top"> <CommandItemTemplate> <div> <asp:LinkButton ID="LinkButton2" OnClientClick="return radconfirm('The selected application(s) will be deleted.\n\nClick OK to confirm.', event, null, null, '', 'Delete')" runat="server" CommandName="DeleteSelected" CausesValidation="false">Delete</asp:LinkButton> <asp:LinkButton ID="LinkButton3" runat="server" CommandName="RebindGrid">Reload</asp:LinkButton> </div> </CommandItemTemplate> <Columns> <telerik:GridClientSelectColumn HeaderStyle-Width="26px" ItemStyle-Width="26px" /> <telerik:GridBoundColumn DataField="intcol" HeaderText="intcol" /> <telerik:GridButtonColumn ButtonType="LinkButton" CommandName="Delete" ConfirmText="Delete?" Text="Delete" ConfirmDialogType="RadWindow"> </telerik:GridButtonColumn> </Columns> </MasterTableView> </telerik:RadGrid></div>I have following radwindow defined on master page.
I try to open a page with anchor tags but it’s not working. But when I open page in the browser Anchor tags work fine.
Rad window:
<telerik:RadWindow ID="radWINDialogPostLogin" runat="server" Behavior="Close" ReloadOnShow="false"
Left="" VisibleTitlebar="True" Style="display: none;" Top="" Modal="False" Behaviors="Close,Move,Resize">
</telerik:RadWindow>