Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
225 views
I've got a tabstrip with tabs and subtabs.  Some of these tabs/subtabs are disabled or invisible.  What I'm trying to do is get the next and previous active tab/subtab with reference to the currently selected tab/subtab (if the rightmost tab in a "subtabstrip" is selected then I need to get the next "main" tab).  I think this is fairly simple but I'm missing something.  Is there some sample code I can look at?
Helen
Telerik team
 answered on 08 Oct 2010
2 answers
124 views
Hi,

For some reason, the controls that are located inside the dynamically created docks are not posting back.

I am adding the whole controls as triggers:
private void CreateSaveStateTrigger(RadDock dock, string childControlId)
        {
             
            dock.AutoPostBack = true;
            dock.CommandsAutoPostBack = true;         
 
            AsyncPostBackTrigger saveStateTrigger = new AsyncPostBackTrigger();
            saveStateTrigger.ControlID = dock.ID;
            saveStateTrigger.EventName = "DockPositionChanged";
            UpdatePanel1.Triggers.Add(saveStateTrigger);
 
            saveStateTrigger = new AsyncPostBackTrigger();
            saveStateTrigger.ControlID = dock.ID;
            saveStateTrigger.EventName = "Command";
            UpdatePanel1.Triggers.Add(saveStateTrigger);
 
 
 
            saveStateTrigger = new AsyncPostBackTrigger();
            saveStateTrigger.ControlID = childControlId;
            UpdatePanel1.Triggers.Add(saveStateTrigger);
        }

Can anyone suggest any solutions?

Thank you.
Pero
Telerik team
 answered on 08 Oct 2010
0 answers
88 views
Please help me understand the difference between the two.
The MVC extensions are free, but the RadControls are not.  What's the difference???
Mike
Top achievements
Rank 1
 asked on 08 Oct 2010
1 answer
73 views
Hello,

We have the following issue with RadControls 2010.2 SP1 (I noticed in the changelog that nothing changed in SP2 in RadTreeView, and also we are suffering from a similar issue since RadControls 2009.3, which is what has kept us using 2009.2 until now):

Once we create a RadTreeView inside <div dir="rtl"> (or use dir="rtl" property of RadTreeView), the entire tree view and its context menus are right-to-left as expected; however, on IE6 the context menus do not look as well as they do in left-to-right: for example the icons do not have a different background color (no matter what skin we use).
And we have a larger problem (also on IE6): if I create two different context menus, and right-click on one and then on the other for a couple of times, all the context menu items get out of the context menu box.

It all works just great on IE6 if we use 2009.2, so we cannot upgrade to any newer version.

There's simple ASP.NET code to reproduce it:
<div dir="rtl">
<asp:ScriptManager runat="server"></asp:ScriptManager>
<telerik:RadTreeView runat="server">
<Nodes>
<telerik:RadTreeNode Text="Root" ContextMenuID="RootNodeMenu">
<Nodes>
<telerik:RadTreeNode Text="Child" ContextMenuID="TreeMenu" />
</Nodes>
</telerik:RadTreeNode>
</Nodes>
<ContextMenus>
<telerik:RadTreeViewContextMenu ID="TreeMenu">
<Items>
<telerik:RadMenuItem Text="ChildMenuItem" />
</Items>
</telerik:RadTreeViewContextMenu>
<telerik:RadTreeViewContextMenu ID="RootNodeMenu">
<Items>
<telerik:RadMenuItem Text="RootMenuItem"/>
</Items>
</telerik:RadTreeViewContextMenu>
</ContextMenus>
</telerik:RadTreeView>
</div>

Please advice.

Thanks!
Kamen Bundev
Telerik team
 answered on 08 Oct 2010
2 answers
124 views
Hello,

I have a horizontal RadMenu.  When a submenu drops down,  there is an empty column that preceeds the submenu item text.  I am using a custom skin ( derived from the Default skin).   I guess this area was used to display an icon. 

The attached jpg displays the menu.
I would like to either remove this area ( which is a gray background) or change the column background to match the website.

Since this is a dropdown on a horizontal menu,  would I be modifying the rmVertical classes ( even tho it is a horizontal root menu)?

Thanks,
bruce
bruce
Top achievements
Rank 1
 answered on 08 Oct 2010
5 answers
253 views
Hello Telerik Team,

I am a newbie to telerik and am tryting accomplish something with radmenu on an asp.net 4 page.
I use the radmenu and the menu is placed on the top of the page. When any menu item is clicked I want to create a menu programaticaly (including root and sub-menu of the item clicked) in the left side panel of the screen. I was able to create it using onitemclick event when I dont specify a navigateurl for the item. Once I specify navigateurl for menuitems I was not able to create the side panel menu, mean I dont see it goes to onitemclick event, but directly goes to navigateurl.  The main top menu is not connected to any; it is created directly using the menu builder from Radmenu. 

Also when I create the sidepanel menu, I want to make the item that clicked being displayed in grey (which indicates that is the item currently clicked).

Please show me how to do this. Your help is greatly appreciated.

Thanks
Joseph
Top achievements
Rank 2
 answered on 08 Oct 2010
1 answer
135 views
Hello,

I would like customize the scheduler so that the recurrence checkbox does not display, but the recurrence editor always displays.
I also need to customize the recurrence editor visually a little.

Is there some sample code to show me how to do this?

Thanks,

Scott
Veronica
Telerik team
 answered on 08 Oct 2010
1 answer
130 views
Hi,
      I have 2 issues as follows:

The timeout for Ajax is not long enough so i want to increase the ajax timeout. I do have the config in web.config. I do not know that it actually works. My waiting time could be from 15--30 min.

<httpRuntime executionTimeout="900" maxRequestLength="4096" useFullyQualifiedRedirectUrl="false" minFreeThreads="8" minLocalRequestFreeThreads="4" appRequestQueueLimit="100" />


Also, as the timeout finishes. The page now has the Javascript error and show the error message at the bottom of IE. So, is there any way i can handle those error and do some custom handling instead of passing it to the user.

Let me know the details. Thanks,

Regards,

Osman
Cori
Top achievements
Rank 2
 answered on 08 Oct 2010
1 answer
71 views
Hi,

All the examples that I have found work with DockLayout positioned inside an UpdatePanel. Is there a way to achieve that?

Thank you.
Pero
Telerik team
 answered on 08 Oct 2010
1 answer
170 views
All,

To support RadCaptCha  in a web farm environment, i have to

  • Set the ImageStorageLocation property to Session;
  • Configure the httpHandler in the following way:
<configuration>
    <system.web>
        <httpHandlers>
            <add path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResourceSession" verb="*" validate="false" />
        </httpHandlers>
    </system.web>
    <system.webServer>
        <handlers>
            <add name="Telerik_Web_UI_WebResource_axd" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResourceSession" />
        </handlers>
    </system.webServer>
</configuration>

as per http://www.telerik.com/community/forums/aspnet-ajax/captcha/rad-captcha-image-not-showing.aspx

How does this web config change affect the other telerik controls?

TIA


Pero
Telerik team
 answered on 08 Oct 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Andrey
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Andrey
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?