Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
106 views
I have a grid with 100% height and borderstyle="Solid" which is in a container with some padding. The bottom border of the grid appears to be missing. Is this an expected behavior of a 100% height grid in a padded container? If so , is there any way to get the bottom border to appear?
Pavlina
Telerik team
 answered on 21 Dec 2010
1 answer
295 views
Hello,

Is it possible to implement the following code in the code behind on run time only.
This code prevent post back when sorting the columns in the grid.

<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
       <AjaxSettings>
           <telerik:AjaxSetting AjaxControlID="RadGrid1">
               <UpdatedControls>
                   <telerik:AjaxUpdatedControl ControlID="RadGrid1"  LoadingPanelID="2" />
               </UpdatedControls>
           </telerik:AjaxSetting>
       </AjaxSettings>
   </telerik:RadAjaxManager>

I would like to prevent to write it in the html.

I have tried to write the following code with no results:

public void Page_Load(object sender, EventArgs e)
        {                       
            RadAjaxManager ajaxManager=new RadAjaxManager();
            ajaxManager.ID = "mkn";
  
            AjaxUpdatedControl ajaxUpdatedControl = new AjaxUpdatedControl("RadGrid1", "2");
  
              
            AjaxSetting see = new AjaxSetting();           
            see.AjaxControlID = "RadGrid1";
            see.UpdatedControls.Add(ajaxUpdatedControl);
  
            ajaxManager.AjaxSettings.Add(see);//.AddAjaxSetting(RadGrid1, RadGrid1,null);
                    }


Oren
Pavlina
Telerik team
 answered on 21 Dec 2010
8 answers
195 views
I have a problem with raising the event OnClientLoad inside the RadSplitter. I have instantiated  3 Radsplitter inside a RadMultiPage. 
If I click the tabs, nothing happens, only if a click the last tab the event OnClientLoad is raised and the alarm dialogbox is shown.


Here my default.aspx:
<%@ Page Language="C#" AutoEventWireup="true" MasterPageFile="~/MasterPage.master"
    CodeFile="Default.aspx.cs" Inherits="_Default" %>
 
<asp:Content ID="Content3" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
    <telerik:RadSplitter ID="RadSplitter1" runat="server" Orientation="Horizontal" PanesBorderSize="0"
        BorderSize="0">
        <telerik:RadPane ID="PanelTGDet" runat="server" Locked="true" Height="24" Scrolling="None">
            <telerik:RadTabStrip ID="tabStripTalkGroupDetails" OnTabClick="tabStripTalkGroupDetails_OnTabClick"
                runat="server" MultiPageID="mpageTalkGroupDetails">
                <Tabs>
                </Tabs>
            </telerik:RadTabStrip>
        </telerik:RadPane>
        <telerik:RadPane ID="RadPane3" runat="server" Scrolling="Y" Height="100%">
            <telerik:RadMultiPage ID="mpageTalkGroupDetails" OnPageViewCreated="mpageTalkGroupDetails_PageViewCreated"
                SelectedIndex="0" runat="server">
            </telerik:RadMultiPage>
        </telerik:RadPane>
    </telerik:RadSplitter>
</asp:Content>

I have created 3 Tabs dynamically:
public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            AddTab("Orango");
            AddTab("OrangoTango");
            AddTab("AnotherOrango");
        }
    }
 
    private void AddTab(string tabName)
    {
        RadTab tab = new RadTab();
        tab.Text = tabName;
        tabStripTalkGroupDetails.Tabs.Add(tab);
 
        RadPageView pageView = new RadPageView();
        pageView.ID = tabName;
        mpageTalkGroupDetails.PageViews.Add(pageView);
    }
 
    protected void tabStripTalkGroupDetails_OnTabClick(object sender, RadTabStripEventArgs e)
    {
    }
 
    protected void mpageTalkGroupDetails_PageViewCreated(object sender, RadMultiPageEventArgs e)
    {
        string userControlName = string.Empty;
 
        switch (e.PageView.ID)
        {
   
            case "Orango":
                userControlName = "~/Orango.ascx";
                break;
 
            case "OrangoTango":
                userControlName = "~/Orango.ascx";
                break;
 
            case "AnotherOrango":
                userControlName = "~/Orango.ascx";
                break;
 
            default:
                break;
        }
 
        if (!string.IsNullOrEmpty(userControlName))
        {
            Control userControl = Page.LoadControl(userControlName);
            userControl.ID = e.PageView.ID + "_userControl";
 
            e.PageView.Controls.Add(userControl);
        }
    }
}

My custom control with the splitter Orango.ascx look like:
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="Orango.ascx.cs" Inherits="Orango" %>
<telerik:RadCodeBlock ID="RadCodeBlock1" runat="server">
 
    <script type="text/javascript">
        function MySplitloadedORANGO(sender, args) {
            alert("SplitterLoad ORANGO");
        }
 
 
    </script>
 
</telerik:RadCodeBlock>
 
<telerik:RadSplitter ID="RadSplitter1" runat="server" Orientation="Horizontal" PanesBorderSize="0"
   OnClientLoad="MySplitloadedORANGO" BorderSize="0" Height="100%">
</telerik:RadSplitter>

The same problem occurs if I create 3 instances of Orango.ascx inside the RadPanel. What is wrong?
 
<%@ Page Language="C#" AutoEventWireup="true" MasterPageFile="~/MasterPage.master"
    CodeFile="Default.aspx.cs" Inherits="_Default" %>

<asp:Content ID="Content3" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
    <telerik:RadSplitter ID="RadSplitter1" runat="server" Orientation="Horizontal" PanesBorderSize="0"
        BorderSize="0">
        <telerik:RadPane ID="PanelTGDet" runat="server" Locked="true" Height="24" Scrolling="None">
            <telerik:RadTabStrip ID="tabStripTalkGroupDetails" OnTabClick="tabStripTalkGroupDetails_OnTabClick"
                runat="server" MultiPageID="mpageTalkGroupDetails">
  
<%@ Page Language="C#" AutoEventWireup="true" MasterPageFile="~/MasterPage.master"
    CodeFile="Default.aspx.cs" Inherits="_Default" %>
 
<asp:Content ID="Content3" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
    <telerik:RadSplitter ID="RadSplitter1" runat="server" Orientation="Horizontal" PanesBorderSize="0"
        BorderSize="0">
        <telerik:RadPane ID="PanelTGDet" runat="server" Locked="true" Height="24" Scrolling="None">
            <telerik:RadTabStrip ID="tabStripTalkGroupDetails" OnTabClick="tabStripTalkGroupDetails_OnTabClick"
                runat="server" MultiPageID="mpageTalkGroupDetails">
                <Tabs>
                </Tabs>
            </telerik:RadTabStrip>
        </telerik:RadPane>
        <telerik:RadPane ID="RadPane3" runat="server" Scrolling="Y" Height="100%">
            <telerik:RadMultiPage ID="mpageTalkGroupDetails" OnPageViewCreated="mpageTalkGroupDetails_PageViewCreated"
                SelectedIndex="0" runat="server">
            </telerik:RadMultiPage>
        </telerik:RadPane>
    </telerik:RadSplitter>
</asp:Content>
<%@ Page Language="C#" AutoEventWireup="true" MasterPageFile="~/MasterPage.master"
    CodeFile="Default.aspx.cs" Inherits="_Default" %>

<asp:Content ID="Content3" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
    <telerik:RadSplitter ID="RadSplitter1" runat="server" Orientation="Horizontal" PanesBorderSize="0"
        BorderSize="0">
        <telerik:RadPane ID="PanelTGDet" runat="server" Locked="true" Height="24" Scrolling="None">
            <telerik:RadTabStrip ID="tabStripTalkGroupDetails" OnTabClick="tabStripTalkGroupDetails_OnTabClick"
                runat="server" MultiPageID="mpageTalkGroupDetails">
                <Tabs>
                </Tabs>
            </telerik:RadTabStrip>
        </telerik:RadPane>
        <telerik:RadPane ID="RadPane3" runat="server" Scrolling="Y" Height="100%">
            <telerik:RadMultiPage ID="mpageTalkGroupDetails" OnPageViewCreated="mpageTalkGroupDetails_PageViewCreated"
                SelectedIndex="0" runat="server">
            </telerik:RadMultiPage>
        </telerik:RadPane>
    </telerik:RadSplitter>
</asp:Content>
             <Tabs>
                </Tabs>
            </telerik:RadTabStrip>
        </telerik:RadPane>
        <telerik:RadPane ID="RadPane3" runat="server" Scrolling="Y" Height="100%">
            <telerik:RadMultiPage ID="mpageTalkGroupDetails" OnPageViewCreated="mpageTalkGroupDetails_PageViewCreated"
                SelectedIndex="0" runat="server">
            </telerik:RadMultiPage>
        </telerik:RadPane>
    </telerik:RadSplitter>
</asp:Content>

<telerik:RadSplitter ID="RadSplitter1" runat="server" Orientation="Horizontal" PanesBorderSize="0"
        BorderSize="0">
        <telerik:RadPane ID="PanelTGDet" runat="server" Locked="true" Height="24" Scrolling="None">
            <telerik:RadTabStrip ID="tabStripTalkGroupDetails" OnTabClick="tabStripTalkGroupDetails_OnTabClick"
                runat="server" MultiPageID="mpageTalkGroupDetails">
                <Tabs>
                </Tabs>
            </telerik:RadTabStrip>
        </telerik:RadPane>
        <telerik:RadPane ID="RadPane3" runat="server" Scrolling="Y" Height="100%">
            <telerik:RadMultiPage ID="mpageTalkGroupDetails" OnPageViewCreated="mpageTalkGroupDetails_PageViewCreated"
                SelectedIndex="0" runat="server">
            </telerik:RadMultiPage>
        </telerik:RadPane>
    </telerik:RadSplitter>
<telerik:RadSplitter ID="RadSplitter1" runat="server" Orientation="Horizontal" PanesBorderSize="0"
        BorderSize="0">
        <telerik:RadPane ID="PanelTGDet" runat="server" Locked="true" Height="24" Scrolling="None">
            <telerik:RadTabStrip ID="tabStripTalkGroupDetails" OnTabClick="tabStripTalkGroupDetails_OnTabClick"
                runat="server" MultiPageID="mpageTalkGroupDetails">
                <Tabs>
                </Tabs>
            </telerik:RadTabStrip>
        </telerik:RadPane>
        <telerik:RadPane ID="RadPane3" runat="server" Scrolling="Y" Height="100%">
            <telerik:RadMultiPage ID="mpageTalkGroupDetails" OnPageViewCreated="mpageTalkGroupDetails_PageViewCreated"
                SelectedIndex="0" runat="server">
            </telerik:RadMultiPage>
        </telerik:RadPane>
    </telerik:RadSplitter>
 
Igor
Top achievements
Rank 1
 answered on 21 Dec 2010
1 answer
95 views

           

Hello,
Please, I need help.
I am using treeview inside a combobox, I see the telerik demo about this issue but instead of using static nodes I am using my sql datasource.
The problem is that in the first open dropdown list everything is ok but when I want to open it again it gives me a javascript error in:
function OnClientDropDownOpenedHandler(sender, eventArgs) {
                var tree = sender.get_items().getItem(0).findControl("tvCategories");
                var selectedNode = tree.get_selectedNode(); ******* here******* null reference
                if (selectedNode) {
                    selectedNode.scrollIntoView();
                }
            }
that's mean that he don't have data source, I tried to use attribute Autopostback=true to go by ajax using also radajaxmanager to the server and get my data source but it didn't work anyway this is my code and I appreciate.

 

   function nodeClicking(sender, args) {
                var comboBox = $find("<%= cboAddRoot.ClientID %>");

                var node = args.get_node()

                comboBox.set_text(node.get_text());

                comboBox.trackChanges();
                comboBox.get_items().getItem(0).set_text(node.get_text());
                comboBox.commitChanges();

                comboBox.hideDropDown();

                // Call comboBox.attachDropDown if:
                // 1) The RadComboBox is inside an AJAX panel.
                // 2) The RadTreeView has a server-side event handler for the NodeClick event, i.e. it initiates a postback when clicking on a Node.
                // Otherwise the AJAX postback becomes a normal postback regardless of the outer AJAX panel.

                //comboBox.attachDropDown();
            }
            function OnClientDropDownOpenedHandler(sender, eventArgs) {
                var tree = sender.get_items().getItem(0).findControl("tvCategories");
                var selectedNode = tree.get_selectedNode();
                if (selectedNode) {
                    selectedNode.scrollIntoView();
                }
            }
            function StopPropagation(e) {
                if (!e) {
                    e = window.event;
                }

                e.cancelBubble = true;
            }

 

 

<tr>
                            <td>
                                Add Root Category:
                            </td>
                            <td>
                                 <telerik:RadComboBox ID="cboAddRoot" runat="server" Width="250px" AutoPostBack="true"
                                    ShowToggleImage="True" Style="vertical-align: middle;" OnClientDropDownOpened="OnClientDropDownOpenedHandler"
                                    EmptyMessage="Choose a Category" ExpandAnimation-Type="None" CollapseAnimation-Type="None">
                                    <ItemTemplate>
                                        <div id="div1">
                                            <telerik:RadTreeView runat="server" ID="tvCategories" DataFieldID="ID" DataSourceID="SqlDataSource1"
                                                DataFieldParentID="ParentID" DataTextField="Name"
                                                DataValueField="ID"
                                             OnClientNodeClicking="nodeClicking" Width="100%" Height="140px">
                                            </telerik:RadTreeView>
                                        </div>
                                     </ItemTemplate>
                                      <Items>
                                            <telerik:RadComboBoxItem Text="" />
                                      </Items>
                                    </telerik:RadComboBox>
                                    <script type="text/javascript">
                                        var div1 = document.getElementById("div1");
                                        div1.onclick = StopPropagation;
                                    </script>

                            </td>
                        </tr>

 

<asp:SqlDataSource ID="SqlDataSource1" runat="server" EnableViewState="true" ConnectionString="<%$ ConnectionStrings:ERPCS %>"
        SelectCommand="SELECT * FROM [ProductCategories]"></asp:SqlDataSource>

                                  OnClientNodeClicking="nodeClicking" Width="100%" Height="140px">
                                            </telerik:RadTreeView>
                                        </div>
                                     </ItemTemplate>
                                      <Items>
                                            <telerik:RadComboBoxItem Text="" />
                                      </Items>
                                    </telerik:RadComboBox>
                                    <script type="text/javascript">
                                        var div1 = document.getElementById("div1");
                                        div1.onclick = StopPropagation;
                                    </script>

                            </td>
                        </tr>




<asp:SqlDataSource ID="SqlDataSource1" runat="server" EnableViewState="true" ConnectionString="<%$ ConnectionStrings:ERPCS %>"
        SelectCommand="SELECT * FROM [ProductCategories]"></asp:SqlDataSource>
Dimitar Terziev
Telerik team
 answered on 21 Dec 2010
3 answers
752 views
Hi,
 I am looking for Inline document viewer in Web applications.I have a requirement to show all the documents(doc,docx,.rtf,xls,ppt..etc) in the browser as inline document like (Scribd).Does Telrik has kind of viewer in your product line.

Thanks,
Rumen
Telerik team
 answered on 21 Dec 2010
1 answer
120 views
Hi,

I am going through all telerik chart control setting and it is quite friendly for the person who is using it first time.

Actually I am stuck-up on one point.

My requirement is, there will be two series on the bar chart. one for self rating and other for peers rating against month. suppose self has not done rating for myself for a perticular month then instead of blank bar, I need to show Hyperlink / or image button. So user will come to know, for which months he has to submit rating.

So is it possible to show such image or hyperlink if data is null or empty in case.

Awating for reply.

Avinash
Evgeni "Zammy" Petrov
Telerik team
 answered on 21 Dec 2010
2 answers
96 views
Hello -

We are using ASP.Net Ajax RadEditor and are experiencing intermittent timeout problems when loading DocumentManager or ImageManager.  These are reports from end-users who report that they get an IE8 "Can not display page" error when trying to invoke DocMan or ImageMan.

The page that is loading has 1 RadEditor in it.  We are using Net 3.5 for framework. 

We have disabled the CDN Telerik feature.  The application runs on an intranet.  ( I guess that mean the javascript is served by our internal servers).

Just wondering if anyone had any similar experience and possible system perfomance tuning to fix.

Thanks,
bruce

bruce
Top achievements
Rank 1
 answered on 21 Dec 2010
3 answers
376 views
Hello,

I have a problems with my radgrid control,(Plaese view the attached image and refer to the numbers).

<telerik:RadGrid ID="RadGrid1" runat="server" Skin="Vista" AllowPaging="True" PagerStyle-AlwaysVisible="true" PagerStyle-Position="TopAndBottom"
                                    AllowSorting="True" AutoGenerateColumns="False" DataSourceID="SqlDataSource1" 
                                    GridLines="None">
                            <MasterTableView DataKeyNames="PsPostID" ShowHeader="false"  
                                         TableLayout="Fixed" 
                                         DataSourceID="SqlDataSource1" Width="840px">
                            <NoRecordsTemplate></NoRecordsTemplate>
                                <Columns>
                                    <telerik:GridTemplateColumn ItemStyle-Width="100%"  ItemStyle-Height="100%" UniqueName="TemplateColumn" InitializeTemplatesFirst="false">
                                            <ItemTemplate>
                                                 <table border="0" cellpadding="0" cellspacing="0" width="100%">
                                                    <tr style="height:50px; background-image:url('../../Design/BackGrounds/PostHeader.jpg');">
                                                        <td colspan="2">
                                                            <asp:Panel ID="Panel1" runat="server" Width="100%" Height="100%" style="margin-left:-10px; vertical-align:top;">
                                                            <table cellpadding="0" cellspacing="0" style="height:100%;" width="100%">
                                                                <tr>
                                                                    <td id="Td4" runat="server" align="right" style="height:10%;">
                                                                        <asp:Label ID="Label6" runat="server" Text="<%$ Resources:Resource, ForumsPagesPostsTableSubjectLabel %>" ></asp:Label
                                                                        <asp:Label ID="Label9" runat="server" Text='<%# Eval("PsMessageSubject", "{0}") %>'></asp:Label>
                                                                        <a name='<%# Eval("PsPostID", "{0}") %>'> </a><br />
                                                                        <asp:Label ID="Label10" runat="server" Text="<%$ Resources:Resource, ForumsPagesPostsTablePostedOnLabel %>" ></asp:Label>
                                                                        <asp:Label ID="Label11" runat="server" Text='<%# Eval("PsPostDate", "{0}") %>'></asp:Label>
                                                                    </td>
                                                                </tr>
                                                                </table>
                                                            </asp:Panel>
                                                        </td>
                                                    </tr>
                                                    <tr valign="top">
                                                        <td style="width:20%;">
                                                            <br />
                                                            <asp:Image ID="Image2" ImageUrl="~/registration-login/avatars/Default.JPG" runat="server" />
                                                            <br /><br />
                                                            <asp:HyperLink ID="HyperLink2" Text='<%# Eval("UUserName", "{0}") %>' NavigateUrl='<%# "~/registration-login/SPages/UserDetails.aspx?userId=" + Eval("UUserID", "{0}") %>' runat="server"></asp:HyperLink>
                                                            <br />
                                                            <asp:Label ID="Label4" runat="server" Text="<%$ Resources:Resource, ForumsPagesPostsFirstColumnPostsLabel %>" ></asp:Label><asp:HyperLink ID="HyperLink1" Text='<%# Eval("UPostCount", "{0}") %>' NavigateUrl='<%# "~/Forums/Pages/UserPosts.aspx?userId=" + Eval("UUserID", "{0}") %>' runat="server"></asp:HyperLink>    
                                                        </td>
                                                        <td style="width:80%;">
                                                            <asp:Panel ID="ContentPanel" runat="server" Width="100%" Height="100%" style="margin-left:-10px; vertical-align:top;">
                                                            <table cellpadding="0" cellspacing="0" style="height:100%;" width="100%">
                                                                <tr style="vertical-align:top;" >
                                                                    <td id="Td2" runat="server" align="right" style="height:90%;">
                                                                        <asp:Label ID="Label3" runat="server" Text='<%# Eval("PsMessageContent", "{0}") %>'></asp:Label>
                                                                        <br /><br /><br /><br /><br /><br /><br /><br />
                                                                        <table width="100%">
                                                                            <tr>
                                                                                <td id="Td3" style="width:100%;" runat="server" align="left" >
                                                                                    <asp:Label ID="PsPostIDSessionLabel" runat="server" Text='<%# Eval("PsPostID").ToString() %>' Visible="false"></asp:Label>
                                                                                    <asp:LinkButton ID="EditLinkButton" runat="server" Font-Size="12pt" Font-Bold="true" Font-Italic="true" onClick="EditLinkButtonClickHandler" Text="<%$ Resources:Resource, ForumsPagesPostsSecondColumnEditHyperlink %>" Visible='<%# Convert.ToInt32(LoggedOnUserID) == Convert.ToInt32(Eval("UUserID", "{0}")) %>' ></asp:LinkButton
                                                                                    <asp:LinkButton ID="ReplyLinkButton" runat="server" Font-Size="12pt" Font-Bold="true" Font-Italic="true" onClick="ReplyLinkButtonClickHandler" Text="<%$ Resources:Resource, ForumsPagesPostsSecondColumnReplyHyperlink %>"  ></asp:LinkButton>
                                                                                </td>
                                                                            </tr>
                                                                        </table>
                                                                    </td>
                                                                </tr>
                                                                <tr>
                                                                    <td align="right">
                                                                        <hr />
                                                                        <asp:Label ID="Label5" runat="server" Text='<%# Eval("USigniture", "{0}") %>'></asp:Label>
                                                                    </td>
                                                                </tr>
                                                            </table>
                                                        </asp:Panel>
                                                        </td>
                                                    </tr>
                                                    </table>
                                            </ItemTemplate>
                                            <ItemStyle HorizontalAlign="Center"  CssClass="PostImageGradient" />
                                            <ItemStyle VerticalAlign="Top" />
                                    </telerik:GridTemplateColumn>
                                </Columns>
                            </MasterTableView>
                              
                            <PagerStyle Mode="NumericPages" ></PagerStyle>
                        </telerik:RadGrid>

1) How can change the localization of this sentence to arabic (Page 1 of 1,Items 1 to 2 of 2)
2) This rad has only one column (GridTemplateColumn column) which generates white margins (top, left, right and bottom), how can I remove them (I need margin = 0)?
3) As you can see in the left hand of the attached image there is a black vertical line which was generated by the GridTemplateColumn column. how can I remove it?

Please, I need your help,
It is appreciated to send me the modified code.

Regards,
Bader
Dimo
Telerik team
 answered on 21 Dec 2010
19 answers
714 views
Hi All,
I've recently upgraded a DNN 4.8.0 module with an 'Ajaxified' Prometheus RadGrid. Everything works great BUT... When I add a second instance of the module to the page I get an error stating only one RadAjaxManager permitted on a page.
I suspect the solution is to dynamically register the RadAjaxManager programatically as the DotNetNuke core handles Ajax Script Managers. Does anyone know if this will work? And if so, any code examples on how to do this?

Thank you...
Digital Man
Top achievements
Rank 2
 answered on 21 Dec 2010
3 answers
253 views
Hello all,
we are facing problem in production server when using ExpandReurrence_UDF. dll ,Telerik.Web.UI.RecurrenceEngine.dll and ExpandRecurrence funciton to get the recurrences from server.
we have referred below a site and followed the same procedure. 
http://blogs.telerik.com/TsvetomirTsonev/Posts/08-08-04/working_with_radscheduler_recurring_appointments_on_sql_server.aspx

then it is working fine in local database server which is sqlserver 2008 and OS windows server 2003.
but when we try to our clients prodcution server which is sqlserver 2008 and OS windows server 2007
we are getting blow issue,

A .NET Framework error occurred during execution of user-defined routine or aggregate "ExpandRecurrence":
System.NullReferenceException: Object reference not set to an instance of an object.
System.NullReferenceException:
   at Telerik.Web.UI.RecurrenceRule.TryParse(String input, RecurrenceRule& rrule)
   at UserDefinedFunctions.ExpandRecurrence(String recurrenceRule, SqlDateTime rangeStart, SqlDateTime rangeEnd)

Any suggestions would be highly appriciable,
Please help us it is very very urgent.

thnaks
Shashi
Peter
Telerik team
 answered on 21 Dec 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
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
Bronze
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?