Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
91 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
254 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
74 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
119 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
87 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
262 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
99 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
152 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
74 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
1 answer
123 views
Hello,
I have a peculiar problem and I wonder how to best solve it.

We have data that is segmented in different levels. What I want to display is a list of all "top" levels with aggregated data for that level.
When the user expands/selects a row I want to query the database for the detail rows. The data has the exact same columns for all rows, so I don't want a nested view or table to screw up my alignements.

As an example: I have two regions, when I first look at the grid, I want to show the total number of products sold per region.
Then I select the southern region.
New rows are queried and inserted under the selection, showing for each outlet the specific number of the same products sold.
The same happens if I select the northern region.

I've attached four pictures to illustrate what I mean.

I tried getting it done using grouping, but the information per row is just a text, I would like it to display the same cells as the rows below.

Please advise how best to do this.
Anders
Top achievements
Rank 1
 answered on 03 Feb 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?