Telerik Forums
UI for ASP.NET AJAX Forum
5 answers
181 views
I'm not sure what the actual behavior is supposed to be, but what I expected when I do set_enabled(false), nothing on the tree should work. What happens is the div containing the UL gets set as disabled. 

Overall this is a minor issue to me as I have a work around. 
Helen
Telerik team
 answered on 12 Apr 2013
3 answers
184 views
Hi,

I am new to telerik control. I have a requirement to create tab with space between tabs. The picture for the requirement added. I tried several ways but the spacing in between the tab breaking the style. Please any one can provide the style/code that I can implement.
Kate
Telerik team
 answered on 12 Apr 2013
2 answers
166 views
Hi there.

What I'm trying to achieve here is to get a dynamic TabStrip to which I can create new tabs.
Each of those tabs include a pageview.
Each of those pageview embeds a usercontrol.
Those usercontrols are consisting in a RadDockLayout + RadDockZone + a Button to create new docks on the current selected tab/pageview.

So far nothing that sounds too fancy or hard to create. The current code works fine:

Here's my "Default.aspx". You can notice that I'm not currently using the RadAjaxManager to Ajaxify my controls.
In this page I'm creating my dynamic TabStrip control that let you create and close tabs via a close button.

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Default" %>
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<head runat="server">
    <title></title>
    <link href="css/lines.css" rel="stylesheet" type="text/css" />
    <link href="css/colorpicker.css" rel="stylesheet" type="text/css" />
    <telerik:RadStyleSheetManager ID="RadStyleSheetManager1" runat="server" />
</head>
<body>
    <form id="form1" runat="server">
    <telerik:RadScriptManager ID="RadScriptManager1" runat="server">
        <Scripts>
            <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>
 
    <script src="js/colorpicker.js" type="text/javascript"></script>
 
    <telerik:RadCodeBlock ID="rcbLineManager" runat="server">
 
        <script type="text/javascript">
            function closeTab(tabText) {
                try {
                    var tabStrip = $find("<%= rtsLines.ClientID %>");
                    var multiPage = $find("<%= mpLines.ClientID %>");
                    var ajaxManager = $find("<%= RadAjaxManager1.ClientID %>");
                    var tab = tabStrip.findTabByText(tabText);
                    var pageView = tab.get_pageView();
 
                    var tabToSelect = tab.get_nextTab();
                    if (!tabToSelect)
                        tabToSelect = tab.get_previousTab();
 
                    tabStrip.get_tabs().remove(tab);
                    multiPage.get_pageViews().remove(pageView);
                    if (ajaxManager != null) {
                        ajaxManager.ajaxRequest("CloseTab|" + tabText);
                    } else {
                        console.log("ajaxManager is null");
                    }
 
                    if (tabToSelect)
                        tabToSelect.set_selected(true);
                }
                catch (err) {
                    console.log(err.message);
                }
            }
        </script>
 
    </telerik:RadCodeBlock>
    <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" OnAjaxRequest="RadAjaxManager1_AjaxRequest">
<%--        <AjaxSettings>
            <telerik:AjaxSetting AjaxControlID="rbtAddLine">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="rtsLines"/>
                    <telerik:AjaxUpdatedControl ControlID="mpLines" LoadingPanelID="ralpLines" />
                </UpdatedControls>
            </telerik:AjaxSetting>
        </AjaxSettings>--%>
    </telerik:RadAjaxManager>
    <telerik:RadButton ID="rbtAddLine" runat="server" OnClick="rbtAddLine_Clicked" Text="New">
    </telerik:RadButton>
    <div>
        <telerik:RadTabStrip ID="rtsLines" runat="server" CssClass="rtsLines" MultiPageID="mpLines"
            OnTabCreated="rtsLines_TabCreated">
        </telerik:RadTabStrip>
        <telerik:RadMultiPage ID="mpLines" runat="server" CssClass="multiPageViewContent"
            Height="400" Width="900" OnPageViewCreated="mpLines_PageViewCreated">
        </telerik:RadMultiPage>
        <telerik:RadAjaxLoadingPanel ID="ralpLines" runat="server">
        </telerik:RadAjaxLoadingPanel>
    </div>
    </form>
</body>
</html>


Here's the code behind:
using System;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.Configuration;
using System.Web.Security;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using Telerik.Web.UI;
using System.Collections.Generic;
using TabsStrips.usercontrol;
 
public partial class Default : System.Web.UI.Page
{
    private static int _id = 0;
    private string tabName;
 
 
    protected void Page_Load(object sender, EventArgs e)
    {
         
    }
 
    protected void rbtAddLine_Clicked(object sender, EventArgs e)
    {
        try
        {
            tabName = "New_" + _id++;
            rtsLines.Tabs.Add(new RadTab(tabName));
            var pv = new RadPageView();
            pv.ID = "pv" + tabName;
            pv.Height = Unit.Pixel(200);
            pv.Width = Unit.Pixel(800);
            mpLines.PageViews.Add(pv);
        }
        catch (Exception ex)
        {
            throw;
        }
    }
 
    protected void rtsLines_TabCreated(object sender, RadTabStripEventArgs e)
    {
        try
        {
            HtmlImage img1 = new HtmlImage();
            img1.Src = "~/images/close.gif";
            img1.Attributes.Add("class", "closeTab");
            Label lbl = new Label();
            lbl.Text = e.Tab.Text;
            img1.Attributes.Add("onclick", "closeTab('" + e.Tab.Text + "');");
 
            e.Tab.Controls.Add(img1);
            e.Tab.Controls.Add(lbl);
        }
        catch (Exception ex)
        {           
            throw;
        }
    }
 
    protected void mpLines_PageViewCreated(object sender, RadMultiPageEventArgs e)
    {
        UserControl LineBuilder = (UserControl)this.LoadControl("usercontrol/LineBuilderV2.ascx");
        LineBuilder.ID = "LineBuilder_" + e.PageView.UniqueID;
        e.PageView.Controls.Add(LineBuilder);
    }
 
    protected void RadAjaxManager1_AjaxRequest(object sender, AjaxRequestEventArgs e)
    {
        try
        {
            var command = e.Argument.Split('|')[0];
            var args = e.Argument.Split('|').Length > 0 ? e.Argument.Split('|')[1] : null;
 
            switch (command)
            {
                case "CloseTab":
                    var tab = rtsLines.FindTabByText(args, true);
                    var pv = tab.PageView;
                    rtsLines.Tabs.Remove(tab);
                    mpLines.PageViews.Remove(pv);
                    break;
                default:
                    break;
            }
        }
        catch (Exception ex)
        {
             
            throw;
        }
    }
}


Here's now the content of my usercontrol embedding the RadDockZone:
Note that I'm using a "hidden" but still "visible" asp update panel to create my new docks, as described in most of the Telerik online examples
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="LineBuilderV2.ascx.cs"
    Inherits="TabsStrips.usercontrol.LineBuilderV2" %>
<telerik:RadAjaxLoadingPanel ID="RalpLineBuilder" runat="server" MinDisplayTime="500">
</telerik:RadAjaxLoadingPanel>
<telerik:RadScriptBlock ID="rsbLine" runat="server">
 
    <script type="text/javascript">
        $(document).ready(function() {
            var elt = $('#<%= PCommands.ClientID %>');
            var stops = $('#<%= RdzLineBuilder.ClientID %>');
            $(elt).find(".colorpicker2").ColorPicker({
                color: '#0000ff',
                onShow: function(colpkr) {
                    $(colpkr).fadeIn(500);
                    return false;
                },
                onHide: function(colpkr) {
                    $(colpkr).fadeOut(500);
                    return false;
                },
                onChange: function(hsb, hex, rgb) {
                    $(elt).find(".colorpicker2 div").css('backgroundColor', '#' + hex);
                    $(stops).find(".<%= RdzLineBuilder.ClientID  %>").css('backgroundColor', '#' + hex);
                }
            });
 
            var currentLoadingPanel = null;
            var currentUpdatedControl = null;
 
            Sys.WebForms.PageRequestManager.getInstance().add_beginRequest(BeginRequestHandler);
            Sys.WebForms.PageRequestManager.getInstance().add_endRequest(EndRequestHandler);
            function BeginRequestHandler(sender, args) {
                currentLoadingPanel = $find("<%= RalpLineBuilder.ClientID %>");
                currentUpdatedControl = $find("<%= PLineBuilder.ClientID %>");
                currentLoadingPanel.show(currentUpdatedControl);
            }
 
            function EndRequestHandler(sender, args) {
                if (currentLoadingPanel != null)
                    currentLoadingPanel.hide(currentUpdatedControl);
                currentUpdatedControl = null;
                currentLoadingPanel = null;
            }
             
        });
    </script>
 
</telerik:RadScriptBlock>
<asp:Button ID="ButtonAddStop" runat="server" OnClick="ButtonAddStop_Click" Text="Add Stop" />
<asp:UpdatePanel ID="UpLineBuilder" runat="server" ChildrenAsTriggers="false" UpdateMode="Conditional" >
    <ContentTemplate>
        <asp:Panel ID="PLineBuilder" runat="server" Width="800px">
            <telerik:RadDockLayout ID="RdlLineBuilder" runat="server" OnSaveDockLayout="RdlLineBuilder_SaveDockLayout"
                OnLoadDockLayout="RdlLineBuilder_LoadDockLayout">
                <telerik:RadDockZone ID="RdzLineBuilder" runat="server" Width="100%" Height="200px"
                    Orientation="Horizontal">
                </telerik:RadDockZone>
            </telerik:RadDockLayout>
        </asp:Panel>
    </ContentTemplate>
    <Triggers>
        <asp:AsyncPostBackTrigger ControlID="ButtonAddStop" EventName="Click" />
    </Triggers>
</asp:UpdatePanel>
<asp:Panel ID="PCommands" runat="server">
    <div class="colorpicker2">
        <div>
        </div>
    </div>
</asp:Panel>
<div style="width: 0px; height: 0px; overflow: hidden; position: absolute; left: -10000px;">
    Hidden UpdatePanel, which is used to help with saving state when minimizing, moving
    and closing docks. This way the docks state is saved faster (no need to update the
    docking zones).
    <asp:UpdatePanel ID="UpLineBuilderHidden" runat="server">
    </asp:UpdatePanel>
</div>


Here's the code behind:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using Telerik.Web.UI;
using System.Web.UI.HtmlControls;
 
namespace TabsStrips.usercontrol
{
    public partial class LineBuilderV2 : System.Web.UI.UserControl
    {
        private string _suffixID;
 
        private List<DockState> CurrentDockStates
        {
            get
            {
                //Store the info about the added docks in the session. For real life
                // applications we recommend using database or other storage medium
                // for persisting this information.
                List<DockState> _currentDockStates = (List<DockState>)Session["CurrentDockStates_" + this.ID];
                if (Object.Equals(_currentDockStates, null))
                {
                    _currentDockStates = new List<DockState>();
                    Session["CurrentDockStates_" + this.ID] = _currentDockStates;
                }
                return _currentDockStates;
            }
            set
            {
                Session["CurrentDockStates_" + this.ID] = value;
            }
        }
 
 
        protected void Page_Load(object sender, EventArgs e)
        {
            _suffixID = this.ClientID.Replace("-", "").Replace("$", "");
            this.Page.LoadComplete += new EventHandler(Page_LoadComplete);
        }
 
        void Page_LoadComplete(object sender, EventArgs e)
        {
            ScriptManager.RegisterStartupScript(this, this.GetType(), "LineBuilder_" + _suffixID,
                @"var currentLoadingPanel = null;
                  var currentUpdatedControl = null;
 
                  Sys.WebForms.PageRequestManager.getInstance().add_beginRequest(BeginRequestHandler);
                  Sys.WebForms.PageRequestManager.getInstance().add_endRequest(EndRequestHandler);
                  function BeginRequestHandler(sender, args) {
                      currentLoadingPanel = $('#" + RalpLineBuilder.ClientID + @"');
                      currentUpdatedControl = $('#" + PLineBuilder.ClientID + @"');
                      currentLoadingPanel.show(currentUpdatedControl);
                  }
 
                  function EndRequestHandler(sender, args) {
                      if (currentLoadingPanel != null)
                          currentLoadingPanel.hide(currentUpdatedControl);
                      currentUpdatedControl = null;
                      currentLoadingPanel = null;
                  }", true);
        }
 
        protected void Page_Init(object sender, EventArgs e)
        {
            //Recreate the docks in order to ensure their proper operation
            for (int i = 0; i < CurrentDockStates.Count; i++)
            {
                RadDock dock = CreateRadDockFromState(CurrentDockStates[i]);
                //We will just add the RadDock control to the RadDockLayout.
                // You could use any other control for that purpose, just ensure
                // that it is inside the RadDockLayout control.
                // The RadDockLayout control will automatically move the RadDock
                // controls to their corresponding zone in the LoadDockLayout
                // event (see below).
                RdlLineBuilder.Controls.Add(dock);
                //We want to save the dock state every time a dock is moved.
                CreateSaveStateTrigger(dock);
 
                if (CurrentDockStates[i].Closed == true)
                {
                    dock.Visible = false;
                }
            }
        }
 
        protected void RdlLineBuilder_LoadDockLayout(object sender, DockLayoutEventArgs e)
        {
            //Populate the event args with the state information. The RadDockLayout control
            // will automatically move the docks according that information.
            foreach (DockState state in CurrentDockStates)
            {
                e.Positions[state.UniqueName] = state.DockZoneID;
                e.Indices[state.UniqueName] = state.Index;
            }
        }
 
        protected void RdlLineBuilder_SaveDockLayout(object sender, DockLayoutEventArgs e)
        {
            //Save the dock state in the session. This will enable us
            // to recreate the dock in the next Page_Init.
            CurrentDockStates = RdlLineBuilder.GetRegisteredDocksState();
        }
 
        private RadDock CreateRadDockFromState(DockState state)
        {
            HtmlGenericControl div = new HtmlGenericControl("div");
            div.Attributes.Add("class", RdzLineBuilder.ClientID);
            div.Style.Add("width", "100px");
            div.Style.Add("height", "100px");
            div.Style.Add("background-color", "White");
 
            RadDock dock = new RadDock();
            dock.DockMode = DockMode.Docked;
            dock.ID = string.Format("RadDock{0}", state.UniqueName);
            dock.ApplyState(state);
            dock.ContentContainer.Controls.Add(div);
            dock.Command += new DockCommandEventHandler(dock_Command);
            dock.Commands.Add(new DockCloseCommand());
 
            return dock;
        }
 
        void dock_Command(object sender, DockCommandEventArgs e)
        {
            if (e.Command.Name == "Close")
            {
                ScriptManager.RegisterStartupScript(
                UpLineBuilderHidden,
                this.GetType(),
                "RemoveDock",
                string.Format(@"function _removeDock() {{ 
                                Sys.Application.remove_load(_removeDock); 
                                $find('{0}').undock(); 
                                $get('{1}').appendChild($get('{0}')); 
                                $find('{0}').doPostBack('DockPositionChanged'); 
                                }}; 
                                Sys.Application.add_load(_removeDock);", ((RadDock)sender).ClientID, UpLineBuilderHidden.ClientID),
                              true);
                CurrentDockStates.Remove(((RadDock)sender).GetState());
            }
        }
 
        private RadDock CreateRadDock()
        {
            HtmlGenericControl div = new HtmlGenericControl("div");
            div.Attributes.Add("class", RdzLineBuilder.ClientID);
            div.Style.Add("width", "100px");
            div.Style.Add("height", "100px");
            div.Style.Add("background-color", "White");
 
            RadDock dock = new RadDock();
            dock.DockMode = DockMode.Docked;
            dock.UniqueName = Guid.NewGuid().ToString().Replace("-", "a");
            dock.ID = string.Format("RadDock{0}", dock.UniqueName);
            dock.Title = "Stop";
            dock.Text = string.Format("Added at {0}\n{1}", DateTime.Now, dock.UniqueName);
            dock.ContentContainer.Controls.Add(div);
            dock.Width = Unit.Pixel(220);
            dock.Height = Unit.Pixel(200);
            dock.Command += new DockCommandEventHandler(dock_Command);
            dock.Commands.Add(new DockCloseCommand());
 
            return dock;
        }
 
        private void CreateSaveStateTrigger(RadDock dock)
        {
            //Ensure that the RadDock control will initiate postback
            // when its position changes on the client or any of the commands is clicked.
            //Using the trigger we will "ajaxify" that postback.
            dock.AutoPostBack = true;
            dock.CommandsAutoPostBack = true;
 
            AsyncPostBackTrigger saveStateTrigger = new AsyncPostBackTrigger();
            saveStateTrigger.ControlID = dock.ID;
            saveStateTrigger.EventName = "DockPositionChanged";
            UpLineBuilderHidden.Triggers.Add(saveStateTrigger);
 
            saveStateTrigger = new AsyncPostBackTrigger();
            saveStateTrigger.ControlID = dock.ID;
            saveStateTrigger.EventName = "Command";
            UpLineBuilderHidden.Triggers.Add(saveStateTrigger);
        }
 
        protected void ButtonAddStop_Click(object sender, EventArgs e)
        {
            RadDock dock = CreateRadDock();
            //adding the dock to the docklayout and then docking it to the zone to avoid ViewState issues on subsequent postback
            RdlLineBuilder.Controls.Add(dock);
            //UpLineBuilderHidden.ContentTemplateContainer.Controls.Add(dock);
 
            ScriptManager.RegisterStartupScript(
            dock,
            this.GetType(),
            "AddDock",
            string.Format(@"function _addDock() {{ 
                                Sys.Application.remove_load(_addDock); 
                                $find('{1}').dock($find('{0}'),{2});  
                                $find('{0}').doPostBack('DockPositionChanged'); 
                                }}; 
                                Sys.Application.add_load(_addDock);", dock.ClientID, RdzLineBuilder.ClientID, 0),
                                                                    true);
 
            CreateSaveStateTrigger(dock);
        }
    }
}


As I said, this works fine. But what I want to achieve is to ajaxify the whole lot, i.e Use my RadAjaxManager on my default.aspx page.
Right now, as soon as I create a new tab, it postback the page and I'm losing some info (plus the page flicks on Chrome, FF is alright)

If I enable my AjaxManager I get the following error message that plenty of people have seen before:
"Sys.InvalidOperationException: Sys.InvalidOperationException: Could not find UpdatePanel with ID 'LineBuilder_pvNew_0_UpLineBuilderHidden'. If it is being updated dynamically then it must be inside another UpdatePanel"

Although I've found many people with the same issue of having an Update Panel within an Ajaxified usercontrol (see here for Telerik explanation) I can't get my mind around this to get a fully ajaxify project.

Another behavior I would like to code is to get an horizontal scrolling bar to appear when adding new docks rather than having them stacking on a new row and a vertical scroll bar.

You can download the project source as zip from here

Any idea / help would be much appreciated.

Cheers everyone,

Chris
Helen
Telerik team
 answered on 12 Apr 2013
1 answer
71 views
How would you databind the treeview in this example? I can't seem to find the correct way.

http://demos.telerik.com/aspnet-ajax/treeview/examples/functionality/treeviewcombobox/defaultcs.aspx?product=combobox


Kate
Telerik team
 answered on 12 Apr 2013
1 answer
128 views
Hi,

My grid requires some bound columns, template columns and unboundcolumns. At design time in .aspx file how should I declare for unbound column.

Eg:

<

 

 

telerik:GridBoundColumn >

 

<

 

 

telerik:GridTemplateColumn >
<Unbound column> -- Based on certain conditions, this column gets populated in code behind and then gets displayed. Initially, it will be hidden.

Thanks,
Prathiba.

 

Princy
Top achievements
Rank 2
 answered on 12 Apr 2013
3 answers
122 views
How to show context menu on clicking button column in radgrid?
Shinu
Top achievements
Rank 2
 answered on 12 Apr 2013
2 answers
159 views
I have a RadAsyncUpload control that I have just gotten coded and installed.  It was a replacement for a RadUpload control.

It appears to be working fine when I test locally and on our Development Server, however when I moved it to our PROD webfarm environment it has been causing intermittant problems with uploads.  Now, I've been able to figure out what the problem is...it is writing the chunks from the file on different servers.  The problem is that so far I have not been able to come up with a solution that I can use, and the documentation for the different properties of the new control is either non-existent or inadequate.  I cannot use a Shared Folder as this is not allowed in our production environment.  And for the Telerik folks, this is a pretty common restriction.

I was trying to use the new DisableChunkUpload property, but all that does is throw an exception "Request filtering is configured on the Web server to deny the request because the content length exceeds the configured value".  And BTW...yes I do have the web.config set to allow 20Mb files.  Which is of course what I'm testing, but when I don't use the DisableChunkUpload="true" that validation happens on the client and I have that message handled.  Does anyone know why the client validation does not work with that property set to true?

I was also going to try just setting the DisableChunkLoad=false, and then set a size for the ChunkSize property that was equal to the size of the MaxFileSize since we are only allowing a max of 20MB files, but so far I have been unable to find any documentation on the maximum size that property value can be set to, or whether it is in bytes or Kb or what.  I am assuming that since the MaxFileSize is in bytes this one is too but I don't know.

Has anyone tried using the DisableChunkUpload property and gotten it to work?  Are there other properties that I have to remove if I use it (for instance, should ChunkSize be removed? Set to 0?)  So far none of the combinations of properties I have tried have worked.  If I have DisableChunkUpload set to true, all it does is stop in the java code generated behind the scene and gives me the above error.

Does anyone know if I can set the TemporyFolder to another server...like a FTP server or to something like a box.com?

Thanks all in advance.
Genady Sergeev
Telerik team
 answered on 12 Apr 2013
1 answer
201 views
Hi,

I want to fit "RadImageEditor1" in "RadpaneMiddle", width is ok but height not work.

What i can do?

Here is my code:
<telerik:RadSplitter ID="RadSplitter1" runat="server" Height="100%" Width="100%" Orientation="Horizontal">
    <telerik:RadPane runat="server" ID="RadPaneTop" Height="20%">
        <div>top</div>
    </telerik:RadPane>
    <telerik:RadSplitBar runat="server" ID="RadSplitbar1" CollapseMode="Forward">
    </telerik:RadSplitBar>
    <telerik:RadPane runat="server" ID="RadpaneMiddle" Height="80%">
        <telerik:RadImageEditor ID="RadImageEditor1" runat="server"
                ImageUrl="/img/logo_multim_120x53.gif"
                Width="100%" Height="100%">
        </telerik:RadImageEditor>
    </telerik:RadPane>
    <telerik:RadSplitBar runat="server" ID="RadSplitbar2" CollapseMode="Forward">
    </telerik:RadSplitBar>
    <telerik:RadPane runat="server" ID="Radpane1" Height="20%">
        <div>bottom</div>
    </telerik:RadPane>
</telerik:RadSplitter>




Regards,

Milko Rivas
Vessy
Telerik team
 answered on 12 Apr 2013
1 answer
154 views
Hi,

RadRotator works on localhost but not on the webserver, i have Telerik.Web.UI and Telerik.web.Design DLLs in the bin folder.
It Pretty Straight forward code. what am i missing.

you can check out the test page here        http://dev.bonaventurebillings.com/Test.aspx

any help is appreciated, Thank you.

Murali.
<telerik:RadRotator ID="RadRotator1" runat="server" Width="224px" Height="112px" CssClass="rotatorStyle" ItemHeight="112" ItemWidth="112" ScrollDuration="500" Skin="Outlook">

 

<Items>

 

<telerik:RadRotatorItem>

 

<ItemTemplate>

 

<asp:Image runat="server" ID="Image" ImageUrl='~/Images/Gallery/thumb1fullSize.jpg'

 

CssClass="RotatorItem" AlternateText="Customer Image"></asp:Image>

 

</ItemTemplate>

 

</telerik:RadRotatorItem>

 

<telerik:RadRotatorItem>

 

<ItemTemplate>

 

<asp:Image runat="server" ID="Image1" ImageUrl='~/Images/Gallery/thumb2.gif'

 

CssClass="RotatorItem" AlternateText="Customer Image"></asp:Image>

 

</ItemTemplate>

 

</telerik:RadRotatorItem>

 

 

</telerik:RadRotator>

Joana
Telerik team
 answered on 12 Apr 2013
8 answers
56 views
hi all, we use r.a.d. editor for our MCMS 2002.  We have a person at my company that the RADControl won't display for his Internet Explorer 8 browser.  I run IE8 and it displays for everyone else fine except for this one person.  I checked his INternet Explorer Security Settings and match it to my and it is fine.  I cannot pinpoint why the control won't render on his browser when it renders fine on my. 

I know this particular control is out of support and MCMS 2002 is very very old....I thought I would throw the question out there to anyone that might have an idea or a place where I can look to get the RADControl to render on his web browser.
Thanks in advance.
Rumen
Telerik team
 answered on 12 Apr 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?