Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
97 views
Hi,

Could you please let me know any sample code or demo Cascading RadComboBoxes with Load on Demand. I would like to load both RadComboBoxes using WCF service.

Thank you..
chris
Top achievements
Rank 1
 answered on 03 Feb 2012
1 answer
79 views
Hi!

I'm using Telerik ASP.NET 2011 Q3 / VS 2008 / NET 3.5

I'm used VSB to create my custom skin and export in ZIP format.

Anyone please tell me the instruction on how to use it in ASP.NET Web Application.

I had config the following

In web.config
<appSettings>
    <add key="Telerik.EnabledEmbeddedSkins" value="false"/>
    <add key="Telerik.Skin" value="XXX"/>
  </appSettings>

I put the skin resource in App_Themes > XXX > Resource File

It not giving any error but all the controls isn't apply skin. 
Bozhidar
Telerik team
 answered on 03 Feb 2012
3 answers
233 views
I am using editor.

I need to restrict the user to modify the content of editor based on some condition

so, i block the editor by onkeydown event.
editor.attachEventHandler("onkeydown", function (e) {
               keepGoing = true;
 
               var keyCode = ('which' in e) ? e.which : e.keyCode;
               edittingKey = (keyCode == 8 /*backspace*/) || (keyCode == 46 /*delete*/) || (keyCode == 9 /*tab*/);
               if (edittingKey) {
                  
                   keepGoing = false;
                
 
               }
 
               return keepGoing;
           });


i need to this in IE(. it works well for delete and back space. but not work in tab key.

it event is fired on pressing tab key, my code return false also.
but, editor shows the tab space between two letters, if the user press tab between two letters.

i need to avoid this.

Thanks,
Uma
Rumen
Telerik team
 answered on 03 Feb 2012
1 answer
67 views
Hi developers, I'm using a chart control for asp.net 1.1 (yes, is very old) and I have a problem with the legend, I need show it in the bottom, but the legend appear over the chart, I already review all the properties but I can't found how.

Please help me. Thanks
Nikolay
Telerik team
 answered on 03 Feb 2012
5 answers
112 views
Hi,

I want to display GridBoundColumns as links for my radgrid. I want to perform this operation at runtime. Is there any way to do this?

Regards,
Mahesh
Anuroop
Top achievements
Rank 1
 answered on 03 Feb 2012
1 answer
83 views
Hi,

I have a radtreeview in aspx page .it has 5 nodes and each nodes have 3 children.
In the same window I have a button .
I have checked some of the in the nodes in the treeview.

When I click on the button a new window will be opened.
How to get these selected nodes values in the newly opened window?
My aim is to create a Telerik report on the newly opened window  based on the selected nodes  in the radtreeview.
How to achieve my aim?

Thanks

Sindu.
Princy
Top achievements
Rank 2
 answered on 03 Feb 2012
3 answers
250 views
Hi everyone,
                I want to create a popup for a button.When I click the button the popup will open having some checkbox which is created in server dynamically.I am able to create the checkbox and popup.But the popup is visible in between i click the left click and click release.Can any one tell me how i will show the popup after the click event.

protected void Page_Load(object sender, EventArgs e)
    {
        if (IsPostBack)
        {
            create_Items();
        }
    }
 
    protected void RadButton1_Click(object sender, EventArgs e)
    {
        create_Items();              
    }
 
    private void create_Items()
    {
        panel1.Controls.Clear();
        int i;
        for (i = 0; i < 5; i++)
        {
            CheckBox cb = new CheckBox();
            cb.ID = "cb" + i.ToString();
            cb.Text = "Checkbox" + i.ToString();
            popcontrol1.TargetControlID = "RadButton1";
            popcontrol1.PopupControlID = "panel1";
            popcontrol1.Position = AjaxControlToolkit.PopupControlPopupPosition.Bottom;
            panel1.Controls.Add(cb);
        }
    }


<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
<
html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>   
    <form id="form1" runat="server">
    <asp:ScriptManager ID = "ScriptManager1" runat = "server"></asp:ScriptManager>
    <div>
    </div>
    <telerik:RadButton ID="RadButton1" runat="server" onclick="RadButton1_Click"
        Text="RadButton">
    </telerik:RadButton>
    <cc1:PopupControlExtender ID="popcontrol1" runat="server" TargetControlID="RadButton1"
        PopupControlID="panel1" Position="Bottom" />
             
     
    <asp:Panel ID="panel1" runat="server" BackColor="#ccffff" Height="182px" Width="211px">
    </asp:Panel>
            
             
        <telerik:RadButton ID="RadButton3" runat="server" Text="RadButton">
    </telerik:RadButton>
 
    </form>
</body>
</html>


with regards
bibhu.
Princy
Top achievements
Rank 2
 answered on 03 Feb 2012
1 answer
90 views
In the same browser, when I view a chart when deployed to an IIS7 Windows 2008 server, its looks different from what I see when I view in local  VS2010 debug mode.  The fonts inside the chart are different causing the deployed version to truncate the title and badly wrap the xaxis label.  The attached image is a side-by-side comparison of the two chart's screenshots. 
MARK
Top achievements
Rank 1
 answered on 03 Feb 2012
3 answers
138 views
i have a datagrid. i used to use autogeneratecolumns  = true

on the RadGrid1_ColumnCreated
i formatted the columns based upon the datatype (HorizontalAlign, $ formatting, ect)

to get the google-like filtering, i had to go away from that and do a foreach statement to load the columns..

none of the events i have hooked up to seem to help me format it.

if autogeneratecolumns   = false

what event do i hook up to?
Princy
Top achievements
Rank 2
 answered on 03 Feb 2012
2 answers
71 views
Please let me know if this is possible. I want to replace"more" link in month view with an image button. Please let me know if this is feasible. if not atleast how can I change the color of "more" link.
Pooja
Top achievements
Rank 1
 answered on 03 Feb 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?