hi ,
I want tile list
1 2 3 4 5 6
7 8 9 10 11 12
13 14 15 16 17
format.
but now its in
1 2 7 8 13 14
3 4 9 10 15 16
5 6 11 12 17
and i want to remove space between 2 & 7.
So pls give me corrwct answer.
Thanks & Regards,
Radian
Hi All
We're trying to update multiple RadGrid's from the client side after some user activity.
The following code works well:
var trgAppointments = $find("<%=trgAppointments.ClientID%>");trgAppointments.get_masterTableView().rebind();However, at the same time, we also need to update second Grid on the same page, so we try this:
// Update appointments var trgAppointments = $find("<%=trgAppointments.ClientID%>"); trgAppointments.get_masterTableView().rebind(); // Update progress notesvar trgProgress = $find("<%=trgProgress.ClientID%>");trgProgress.get_masterTableView().rebind();This doesn't work so well. The end result is:
I'm not sure what the right way to go about this is. Any suggestions?​

I would like to add two files into the radsciptmanager if the user is using a version of IE < 9. My thought is that in the Page_Load I can test the users Browser and use an if statement to add in the 2 scripts. The reason being, these 2 files fix issues in IE 7&8 but they cause issues in IE 9&10. I have posted some code that I have tried out just not sure what I am missing or if it is possible. Is this possible with RadScriptManager? Thanks in advance.
<telerik:RadScriptManager ID="RadScriptManager" runat="server" EnablePartialRendering="true"
AsyncPostBackTimeout="1800" EnableCdn="true">
<Scripts>
<telerik:RadScriptReference Path="~/Scripts/​File1.js" />
<telerik:RadScriptReference Path="~/Scripts/​File2.js" />
<telerik:RadScriptReference Path="~/Scripts/File3.js" />
</Scripts>
</telerik:RadScriptManager>
-------------------------------------------------------------------------------------------------------------------------------
if (type == "IE8" || type == "IE7")
{
RadScriptManager rsmgr = new RadScriptManager();
//ScriptManager smgr = ScriptManager.GetCurrent(Page);
ScriptReference SRef = new ScriptReference("~/Scripts/File4.js");
ScriptReference SRef1 = new ScriptReference("~/Scripts/File5.js");
rsmgr.Scripts.Add(SRef);
rsmgr.Scripts.Add(SRef1);
}​

<%
@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true"
CodeBehind="Default.aspx.cs" Inherits="TelerikRadWindowSample._Default" %>
<%
@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
<
asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent">
</
asp:Content>
<
asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
<telerik:RadWindowManager ID="radWindowManager1" runat="server"></telerik:RadWindowManager>
<h2>
Welcome to ASP.NET!
</h2>
<asp:Button ID="Button1" runat="server" Text="Open Rad Window"
onclick="Button1_Click" />
</p>
</
asp:Content>
here is my code behind
protected
void Button1_Click(object sender, EventArgs e)
{
// I dont see RadAlert
this.radWindowManager1.
}
Hi,
I have customized some of the dialogs of RadEditor using the provided ASCX files. I can successfully test the customization when the files are physically stored on a disk and a proper physical path is provided to the ExternalDialogsPath.
My question is - how can I now use the ExternalDialogsPath in combination with embedding the modified dialogs into my assembly? I don't want the modified dialogs to be part of my directory structure on the server.
Hi All,
I know , we have property called "AllowedFileExtensions" specify the allowed extensions. but i have list of extensions which need to be blocked like .ADE,ADP,BAS,BAT,CHM,CMD,COM,CPL,CRT,EXE,HLP,HTA,INF,INS,ISP,JS so on.....list goes upto 38 extensions. How to block this list of extensions for RadAsyncupload control......

