Telerik Forums
UI for ASP.NET AJAX Forum
6 answers
134 views
Hi there,

Im currently using the RadPanelBar and RadMenu as navigation on my website. They are both using the same datasource (see sitemap). For the radMenu I want to be able to click on the administrator/broker manager node and have it take me to the default page for that section. I thought I could just put the default.aspx url in the upper node, but I realised that all the urls have to be unique.At the moment, clicking on either the Administration or Broker Manager nodes takes the user to a directory listing. Is there a way around this? I have attached pictures to better explain what Im doing.

Thanks for your time!

Peter


<?xml version="1.0" encoding="utf-8" ?>
    <siteMapNode url="/Views/" title=""  description="">
        <siteMapNode url="/Views/BrokerManager/" title="Broker Manager">
            <siteMapNode url="/Views/BrokerManager/BrokerManager/" title="Broker Manager">
                <siteMapNode url="/Views/BrokerManager/BrokerManager/Default.aspx" title="Brokers" />
                <siteMapNode url="/Views/BrokerManager/BrokerManager/OfficeList.aspx" title="Offices" />
            </siteMapNode>
        </siteMapNode>
        <siteMapNode url="/Views/Administration/" title="Adminstration" >
            <siteMapNode url="/Views/Administration/UserManagement/" title="User Management" description="">
                <siteMapNode url="/Views/Administration/UserManagement/Default.aspx" title="Users" />
                <siteMapNode url="/Views/Administration/UserManagement/Roles.aspx" title="Roles" />
            </siteMapNode>
            <siteMapNode url="/Views/Administration/Subscribers/" title="Subscriber Management" description="">
                <siteMapNode url="/Views/Administration/Subscribers/Default.aspx" title="Subscribers" />
            </siteMapNode>
        </siteMapNode>
    </siteMapNode>
</siteMap
Kate
Telerik team
 answered on 21 Jan 2012
8 answers
287 views
Hello,

First of all, I am going to write an example of a treeview to explain better myself.

Node1
    | Node 1.1
           | Node 1.1.1
           | Node 1.1.2
Node 2
    | Node 2.1
Node 3
Node 4

I would like to set a background color ONLY to the root nodes which have leaves. In this case Node 1 and Node 2. Idon“t want to set it for Node 1.1 despite it has leaves as well. Only root nodes with leaves.

Do you understand it? Please feel free to ask me in case of any doubt.

Thank you in advance.
   
Bozhidar
Telerik team
 answered on 21 Jan 2012
1 answer
92 views
I'm having trouble uninstalling RadControls for SharePoint. I have uninstalled SharePoint from this computer which seems to be preventing me from uninstalling RadControls for SharePoint as it appears dependent on SharePoint itself being installed. I've attached a screenshot.
Chavdar Dimitrov
Telerik team
 answered on 21 Jan 2012
6 answers
134 views
The click event of the node only fires when I click on any text part of the node. If if click on any space after the text the event does not fire. Am I missing anything, any property or any handler?

mirang
Top achievements
Rank 1
 answered on 21 Jan 2012
4 answers
80 views
I have set up my tabcontrol, but when it runs it never moves off of the first one.  I think it has something to do with the
selectedindex="0", but the builder didn't put anything in for that.  I tried the Javascript I found on here but that just generates
an error that tabstrip.get_element())is null.

<telerik:RadScriptManager ID="RadScriptManager1" Runat="server">
</telerik:RadScriptManager>
<telerik:RadTabStrip ID="RadTabStrip1" runat="server" SelectedIndex="0"
    ontabclick="RadTabStrip1_TabClick" Skin="Black">
    <Tabs>
        <telerik:RadTab runat="server" NavigateUrl="~/Default.aspx"
            Selected="True" Text="Home">
            <Tabs>
                <telerik:RadTab runat="server" NavigateUrl="~/Careers.aspx"
                    Text="Careers">
                </telerik:RadTab>
                <telerik:RadTab runat="server" NavigateUrl="~/ContactUs.aspx" 
                    Text="ContactUs">
                </telerik:RadTab>
                <telerik:RadTab runat="server" NavigateUrl="~/About.aspx" 
                    Text="About Us">
                </telerik:RadTab>
            </Tabs>
        </telerik:RadTab>
        <telerik:RadTab runat="server" NavigateUrl="~/Service.aspx"
             Text="Services">
            <Tabs>
                <telerik:RadTab runat="server" NavigateUrl="~/GetAQuote.aspx" 
                    Text="Get A Quote">
                </telerik:RadTab>
            </Tabs>
        </telerik:RadTab>
        <telerik:RadTab runat="server" NavigateUrl="~/Products.aspx"
             Text="Products">
            <Tabs>
                <telerik:RadTab runat="server" NavigateUrl="~/pads.aspx"  Text="Pads">
                </telerik:RadTab>
                <telerik:RadTab runat="server" NavigateUrl="~/holiday1.aspx" 
                    Text="Holiday Cards">
                </telerik:RadTab>
            </Tabs>
        </telerik:RadTab>
        <telerik:RadTab runat="server" NavigateUrl="~/Resources.aspx"
             Text="Resources">
        </telerik:RadTab>
        <telerik:RadTab runat="server" NavigateUrl="~/Uploadafile.aspx"
             Text="Up Load A File">
        </telerik:RadTab>
        <telerik:RadTab runat="server" BackColor="Transparent" Font-Bold="True"
            ForeColor="Red" Text="On-line Specials" NavigateUrl="~/Specials.aspx">
        </telerik:RadTab>
    </Tabs>
</telerik:RadTabStrip>
<script type="text/javascript">
    function pageLoad() {
        var tabstrip = $find("RadTab");
        $telerik.$("a", tabstrip.get_element()).bind("focus", function () {
            var index = $telerik.$("a", tabstrip.get_element()).index(this);
            tabstrip.get_tabs().getTab(index).set_selected(true);
        });
    }
</script>

Kate
Telerik team
 answered on 21 Jan 2012
9 answers
229 views
Hello! I haven't seen one listed in the available charts, and was wondering if there are any plans to implement one? Could really use it :)

Regards!

Steve
Miro Miroslavov
Telerik team
 answered on 21 Jan 2012
3 answers
553 views
My problem is when i try to use Telerik.Web.SkinRegistrar.GetWebResourceUrl like this :

<

 

 

asp:ImageButton ID="btnEditExternalCollaborator" runat="server" ImageUrl='<%# Telerik.Web.SkinRegistrar.GetWebResourceUrl(Me, GetType(RadGrid), "Telerik.Web.UI.Skins.Office2007.Grid.Edit.gif") %>' ToolTip="btnEditExternalCollaboratorTooltip" />


in an usercontrol. Error is :

BC30311: Une valeur de type 'ASP.subject_psi_uccollaborators_ascx' ne peut pas ĆŖtre convertie en 'System.Web.UI.Page'.

How I can do in userontrol ?
Abhishek
Top achievements
Rank 2
 answered on 21 Jan 2012
2 answers
262 views
Hi,

I have some complicated scenario over here. I have one User control with one button, on click of this button modal popup is open up.
I need electives from below:

* Can same Panel control (Within modal popup) open in radtooltip? 

OR

* If I will make new user control and call this new user control as tooltip on parent user control's button?

Thanks,

Kaushal Jani
Kaushal
Top achievements
Rank 1
 answered on 21 Jan 2012
1 answer
87 views
Does the uploader have the ability to upload all files within a specific folder instead of uploading a file one by one.
Richard
Top achievements
Rank 1
 answered on 20 Jan 2012
10 answers
279 views
I use RadFilter on radgrid, everything worked just fine for a while, but after I added more features to the grid (show/hide column, exporting), all the sudden the filter stop working and throw error on "Sys.WebForms.PageRequestManagerServerErrorException: Object reference not set to an instance of an object.", after search I guess it might have something to do with exporting, I use external button for word exporting, but i am not using filter in the grid, I use RadFilter associate with the radgrid...any ideas?

Thanks,

Shan
Dave
Top achievements
Rank 1
 answered on 20 Jan 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?