Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
345 views
Hi,
       I am binding data source to radGrid. By default its displaying rows in top to bottom flow.
I want to display data with column repeat direction = "horrizotal" .

Is that possible?

waiting for reply..
Mira
Telerik team
 answered on 14 Apr 2011
1 answer
182 views
We are using jQuery to place the focus on the first or last element of the page, however we are having some issues with Telerik controls.

The jQuery which we are using is the following:

$(function() {   $("#divId :input:not(:hidden):first").focus();});


When we try to place the focus on the textbox in RadDateTimePicker, it always sets the focus on the RadDateTimePicker itself. We would have to set the focus on the 2nd element of the page to have focus in the text box.

<telerik:RadDateTimePicker ID="DatePickerOdometerUpdateDate" runat="server" CssClass="edit" Skin="Default" <br>                MinDate="1800-01-01" meta:resourcekey="DatePickerResource" TabIndex="1" ToolTip="<%$ Resources:dtpDateCounters_ToolTip %>" onkeydown="return checkIfPrev(this, event);"><br>                    <DateInput runat="server" LabelCssClass="riLabel radLabelCss_Telerik" TabIndex="1" Skin="Default" ></DateInput><br>                    <Calendar runat="server" Skin="Default" ViewSelectorText="x" UseColumnHeadersAsSelectors="False" UseRowHeadersAsSelectors="False"></Calendar><br>                <DatePopupButton HoverImageUrl="" ImageUrl="" TabIndex="-1" /><br>                <TimePopupButton HoverImageUrl="" ImageUrl="" TabIndex="-1" /><br>                <TimeView CellSpacing="-1" runat="server"><br>                </TimeView><br>                </telerik:RadDateTimePicker>

When we try to place the focus a RadNumericTextBox and it is in the last position, it requires us to place the focus on the before last element.
<telerik:RadNumericTextBox ID="txtTotalHours" Skin="Default" runat="server" CssClass="edit" Width="65px" Height="13px" MaxLength="11" TabIndex="5" MinValue="-70368744177663" ToolTip="<%$ Resources:txtRunTime_ToolTip %>" onkeydown="return checkIfNext(this, event);"><br>                <NumberFormat DecimalDigits="1" /><br>            </telerik:RadNumericTextBox>    

Is there an easy way to by-pass these additional text boxes and set the focus on the elements easily.

Thanks.
Vasil
Telerik team
 answered on 14 Apr 2011
1 answer
91 views
I am trying to use the Splitter/Sliding Panel as a "Message Center" for errors in my master page.  I would like it at the BOTTOM of my Window.  Currently it shows up at the Bottom of My HTML...Can I get it so that it is ALWAYS at the Bottom of the Browser Window?  Here is my currently markup:

Thanks, much appreciated.

Mark

<telerik:RadSplitter ID="RadSplitter1" runat="server" Orientation="Vertical" Skin="WebBlue" Width="100%" ><br>            <telerik:RadPane ID="RadPane1" runat="server"><br>                <telerik:RadSlidingZone ID="RadSlidingZone1" runat="server" SlideDirection="Top"><br>                    <telerik:RadSlidingPane ID="RadSlidingPane1" runat="server" Title="Message Center" Height="100" Scrolling="Y" BackColor="Red"><br>                        <asp:Label ID="lblErrorMessage" CssClass="textFields" runat="server" Text="Label"></asp:Label><br>                    </telerik:RadSlidingPane><br>                </telerik:RadSlidingZone><br>            </telerik:RadPane><br>        </telerik:RadSplitter>

See attached image for current placement.
Svetlina Anati
Telerik team
 answered on 14 Apr 2011
1 answer
77 views
Can anyone point me to where the MSI is for 2010.2.0924 (2010.2.0924.1040) version of telerik can be found? The engineers at my company have informed me that we have a "custom" version but cannot provide any more information. We currently have MSI installers for Telerik.Web.UI_2010_2_826_Dev.msi and Telerik.Web.UI_2010_2_713_Dev.msi, but not the version our software is on. Any help would be appreciated.

Brian
Sebastian
Telerik team
 answered on 14 Apr 2011
1 answer
71 views
When i define the client handler for calendar OnDateSelected event  i get strange action
as when i select date some dates after being set get change automatically to another date one or 2 days after the date i set

the code is as blow:
<telerik:RadDatePicker ID="calDOB" runat="server" Culture="en" MinDate="1900-01-01"
                Width="100%" TabIndex="5">
                <Calendar runat="server" UseRowHeadersAsSelectors="False" UseColumnHeadersAsSelectors="False" ViewSelectorText="x">
                </Calendar>
                <DateInput runat="server" DisplayDateFormat="d/M/yyyy" DateFormat="d/M/yyyy" TabIndex="5">
                </DateInput>
                <DatePopupButton ImageUrl="" HoverImageUrl="" TabIndex="5"></DatePopupButton>
                <ClientEvents OnDateSelected="SelectedDateChanged" />
            </telerik:RadDatePicker>

function SelectedDateChanged(sender,args) {
 
          var PckrBirthDate = $find('<%=calDOB.ClientID %>');
          var LblYears = $find('<%= TxtYears.ClientID %>');
          var LblMonths = $find('<%= TxtMonths.ClientID %>');
          var LblDays = $find('<%= TxtDays.ClientID %>');
 
           
 
          var birthDate = PckrBirthDate.get_selectedDate();
 
          if (birthDate != null) {
              var calday = birthDate.getDate();            
              var calmon = birthDate.getMonth();
              var calyear = birthDate.getFullYear();
              getAge(calday, calmon, calyear, LblYears, LblMonths, LblDays); 
          }
          else {
              LblYears.set_value("");
              LblMonths.set_value("");
              LblDays.set_value("");
          }           
      }
function getAge(date, month, year, yearControl, monthControl, dayControl) {
 
    today = new Date();
    dateStr = today.getDate();
    monthStr = today.getMonth();
    yearStr = today.getFullYear();
 
    theYear = yearStr - year;
    theMonth = monthStr - month;
    theDate = dateStr - date;
 
    var days = "";
    if (monthStr == 0 || monthStr == 2 || monthStr == 4 || monthStr == 6 || monthStr == 7 || monthStr == 9 || monthStr == 11) days = 31;
    if (monthStr == 3 || monthStr == 5 || monthStr == 8 || monthStr == 10) days = 30;
    if (monthStr == 1) days = 28;
 
    yearControl.set_value(theYear);
 
    if (month < monthStr && date > dateStr) {
        yearControl.set_value(parseInt(yearControl.get_value()) + 1);
        monthControl.set_value(theMonth - 1);
    }
    if (month < monthStr && date <= dateStr) { monthControl.set_value(theMonth); }
    else if (month == monthStr && (date < dateStr || date == dateStr)) { monthControl.set_value(0); }
    else if (month == monthStr && date > dateStr) { monthControl.set_value(11); }
    else if (month > monthStr && date <= dateStr) {
        yearControl.set_value(yearControl.get_value()- 1);
        monthControl.set_value(((12 - -(theMonth))));
    }
    else if (month > monthStr && date > dateStr) { monthControl.set_value(((12 - -(theMonth)))); }
 
    if (date < dateStr) { dayControl.set_value(theDate); }
    else if (date == dateStr) { dayControl.set_value(0); }
    else { yearControl.set_value(yearControl.get_value() - 1); dayControl.set_value(days - (-(theDate))); }
}

Hope I can get solution to such a problem as soon as possible
Mira
Telerik team
 answered on 14 Apr 2011
1 answer
101 views
Hi Guys,
i,m new bee for telerik chart. i want to set YAxis2 scale range with 8 hours step for stacked bar value. i have tried. but its not giving correct result. please help me, its very very urgent.

 protected void EmployeesChart_BeforeLayout(object sender, EventArgs e)
        {
            foreach (LabelItem item in EmployeesChart.Legend.Items)
            {
                item.Marker.Appearance.Figure = Telerik.Charting.Styles.DefaultFigures.Rectangle;
                item.Marker.Appearance.Dimensions.Width = 25;
            }
           
            int mins = 0;
            int hours = 0;
            foreach (ChartAxisItem axisItem in EmployeesChart.PlotArea.YAxis2.Items)
            {
                axisItem.TextBlock.Text = string.Format("{0:0}", hours) + ":" + string.Format("{0:00}", mins);
                hours = hours + 8;
            }


        }

HTML:
<telerik:RadChart ID="EmployeesChart" runat="server" OnBeforeLayout="EmployeesChart_BeforeLayout"
        OnClick="EmployeesChart_Click" DefaultType="StackedBar" Width="750" SeriesOrientation="Horizontal"
        Style="margin-left: 100px">
        <ChartTitle TextBlock-Appearance-AutoTextWrap="Auto" TextBlock-Text="Week-to-Date Labor Hours by Employee">
            <Appearance Position-AlignedPosition="Top">
            </Appearance>
        </ChartTitle>
        <Series>
            <telerik:ChartSeries Name="Regular" Type="StackedBar">
                <Appearance>
                    <Border Visible="false" />
                    <FillStyle FillType="Solid" MainColor="79, 129, 189">
                    </FillStyle>
                    <LabelAppearance Position-AlignedPosition="Center" Distance="10" Visible="true">
                    </LabelAppearance>
                    <TextAppearance TextProperties-Color="Black">
                    </TextAppearance>
                    <Border Color="136, 166, 78" />
                </Appearance>
            </telerik:ChartSeries>
            <telerik:ChartSeries Name="Overtime" Type="StackedBar">
                <Appearance>
                    <Border Visible="false" />
                    <FillStyle FillType="Solid" MainColor="192, 80, 77">
                    </FillStyle>
                    <LabelAppearance Position-AlignedPosition="Center" Distance="10" Visible="False">
                    </LabelAppearance>
                    <TextAppearance TextProperties-Color="Black">
                    </TextAppearance>
                    <Border Color="136, 166, 78" />
                </Appearance>
            </telerik:ChartSeries>
            <telerik:ChartSeries Name="Projected" Type="StackedBar">
                <Appearance>
                    <Border Visible="false" />
                    <FillStyle FillType="Solid" MainColor="134,134, 134">
                    </FillStyle>
                    <LabelAppearance Position-AlignedPosition="Center" Visible="true">
                    </LabelAppearance>
                    <TextAppearance TextProperties-Color="Black">
                    </TextAppearance>
                    <Border Color="136, 166, 78" />
                </Appearance>
            </telerik:ChartSeries>
        </Series>
        <PlotArea>
            <XAxis VisibleValues="Positive" Visible="True">
                <AxisLabel Visible="true">
                    <TextBlock Text="Employees">
                    </TextBlock>
                    <Appearance Position-AlignedPosition="Center">
                    </Appearance>
                </AxisLabel>
                <Appearance>
                    <MajorGridLines Color="134, 134, 134" Width="0" />
                    <TextAppearance TextProperties-Color="Black">
                    </TextAppearance>
                </Appearance>
                <AxisLabel>
                    <Appearance RotationAngle="270">
                    </Appearance>
                    <TextBlock>
                        <Appearance TextProperties-Color="Black">
                        </Appearance>
                    </TextBlock>
                </AxisLabel>
            </XAxis>
            <YAxis2 VisibleValues="Positive" Visible="True">
                <AxisLabel Visible="true">
                    <TextBlock Text="Hours">
                        <Appearance TextProperties-Color="Black">
                        </Appearance>
                    </TextBlock>
                    <Appearance Position-AlignedPosition="Bottom">
                    </Appearance>
                </AxisLabel>
                <Appearance ValueFormat="ShortTime">
                    <MajorGridLines Color="134, 134, 134" Width="0" />
                    <TextAppearance TextProperties-Color="Black">
                    </TextAppearance>
                </Appearance>
                <AxisLabel>
                    <Appearance RotationAngle="0">
                    </Appearance>
                </AxisLabel>
            </YAxis2>
            <YAxis Visible="False" VisibleValues="All">
            </YAxis>
        </PlotArea>
    </telerik:RadChart>

Thanks
Ravi


Yavor
Telerik team
 answered on 14 Apr 2011
1 answer
178 views
Hello,

I have a gridview in which I inserted a GridTemplateColumn with a checkbox. The grid is loaded from your code and I can not set the checkbox value in the datatable.

Help
Best regards
Alessia
<telerik:RadGrid ID="G_Permessi" runat="server" AllowPaging="true" Width="100%" Height="100%"
    AutoGenerateColumns="false" GridLines="Both" PageSize="13" AllowSorting="true"
    AllowMultiRowSelection="true">
    <ClientSettings AllowKeyboardNavigation="true" ActiveRowIndex="0">
        <Scrolling AllowScroll="true" SaveScrollPosition="true" UseStaticHeaders="True" />
        <Selecting AllowRowSelect="true" />
        <ClientEvents OnRowSelected="G_Permessi_OnRowSelected" />
    </ClientSettings>
    <AlternatingItemStyle BackColor="#C7E3E3" />
    <PagerStyle AlwaysVisible="true" Mode="NextPrevAndNumeric" PagerTextFormat="{4} Numero record filtrati: {5}" />
    <MasterTableView runat="server" TableLayout="Fixed" DataKeyNames="IdPermesso" EditMode="InPlace">
        <Columns>
            <telerik:GridBoundColumn UniqueName="AttivoDB" DataField="Attivo" Display="false" />
            <telerik:GridBoundColumn UniqueName="IdPermesso" DataField="IdPermesso" Display="false" />
            <telerik:GridBoundColumn UniqueName="Modulo" DataField="Modulo" HeaderText="Modulo"
                meta:resourcekey="G_Permessi_Modulo">
                <HeaderStyle Width="100px" />
            </telerik:GridBoundColumn>
            <telerik:GridBoundColumn UniqueName="Permesso" DataField="Permesso" HeaderText="Permesso"
                meta:resourcekey="G_Permessi_Permesso">
                <HeaderStyle Width="100px" />
            </telerik:GridBoundColumn>
            <telerik:GridBoundColumn UniqueName="Descrizione" DataField="Descrizione" HeaderText="Descrizione"
                meta:resourcekey="G_Permessi_Descrizione">
                <HeaderStyle Width="100px" />
            </telerik:GridBoundColumn>
            <telerik:GridTemplateColumn UniqueName="Attivo" DataField="Attivo" HeaderText="Attivo"
                meta:resourcekey="Grid_Attivo">
                <ItemTemplate>
                    <asp:CheckBox ID="Chk_Attivo" OnCheckedChanged="AssegnaPermesso" AutoPostBack="true"
                        runat="server" />
                </ItemTemplate>
                <ItemStyle HorizontalAlign="Center" />
                <HeaderStyle HorizontalAlign="Center" Width="50px" />
            </telerik:GridTemplateColumn>
            
        </Columns>
    </MasterTableView>
</telerik:RadGrid>






Shinu
Top achievements
Rank 2
 answered on 14 Apr 2011
1 answer
131 views
I have the 2009 Q3 controls installed within VS 2010. I want to upgrade to 2011 Q1. I have the attached picture that shows it's installed.

However, I can't find the "RadControls for ASP.NET AJAX Q1 2011" folder anywhere on my pc.

How can I upgrade to these new controls?
Erjan Gavalji
Telerik team
 answered on 14 Apr 2011
1 answer
333 views
Hi Support Team:
I just want to know if there is a way that the list view that is implemented as an Image gallery and that is actually in this link
http://demos.telerik.com/aspnet-ajax/controls/examples/integration/listviewsliderwindowrotator/defaultvb.aspx?product=listview can load the images from the db.And if there is a way could you please give me a brief example of it and also if there is a way to give the choice to the user to delete,modify and update the photos and its properties.
Thanks a lot for your support!!
Rene Lopez
Tsvetina
Telerik team
 answered on 14 Apr 2011
1 answer
182 views
Hello,

I am trying to use the RadTimePicker to both bind to a Time Value and allow selection/changes to the value in the input box.  When I am clicking the image of the clock, the popout for the time ranges is not showing.  Below is my markup:

<%@ Page Language="C#" AutoEventWireup="true"  MasterPageFile="~/Site.Master"  EnableTheming="true" Theme="theme" CodeBehind="TimeSheet.aspx.cs" Inherits="TimeSheet.Account.TimeSheet" %>
 
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
 
<asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent">
</asp:Content>
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
<style>
.NumericTextStyle { text-align:right !important; }
</style> 
    <div>
        <h1>Employees Time Sheet</h1>
        
        <table style="width454px">
            <tr>
                <td style="width84px">
                    <asp:Label ID="Label1" runat="server" Text="Employee:"></asp:Label>
                 </td>
                <td>
                    <asp:Label ID="lblEmployeeName" runat="server" Width="350px" BorderWidth="1px" 
                        Font-Bold="False" BorderColor="Black" BorderStyle="Groove"></asp:Label>
                    </td>
            </tr>
            <tr>
                <td style="width84px">
                    <asp:Label ID="Label2" runat="server" Text="Week Of:"></asp:Label></td>
                <td>
                <asp:DropDownList ID="ddTimePeriod" Width="350px"  BackColor="#FEFFE8" AutoPostBack="true" 
                        runat="server" onselectedindexchanged="ddTimePeriod_SelectedIndexChanged">
                    </asp:DropDownList>
                </td>
            </tr>
            </table>
        <br />
         <telerik:RadScriptManager ID="RadScriptManager1" runat="server">
         </telerik:RadScriptManager>
         <telerik:RadFormDecorator ID="RadFormDecorator1" runat="server" />
         <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
        <AjaxSettings>
            <telerik:AjaxSetting AjaxControlID="Button1">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="Panel1" />
                </UpdatedControls>
            </telerik:AjaxSetting>
            <telerik:AjaxSetting AjaxControlID="Button2">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="Panel1" />
                </UpdatedControls>
            </telerik:AjaxSetting>
        </AjaxSettings>
    </telerik:RadAjaxManager>
        <div id="TimeEntry" style="background-color:#FEFFE8border:thin solid #008080padding:5pxwidth:1005px ">
        <asp:DataList ID="dlTimeSheet" runat="server" 
        RepeatColumns="9" RepeatDirection="Horizontal" CellPadding="1" UseAccessibleHeader="True" 
        onitemdatabound="dlTimeSheet_ItemDataBound" DataKeyField="Id" 
                ShowFooter="False" ShowHeader="False" >
        <ItemTemplate>
        <div style="text-align:centerwidth:100px">
        <asp:Label ID="lblRowTitle1" runat="server" Height="84px" Width="100px" 
                Text="" /><br />
        <asp:Label ID="lblRowTitle2" runat="server" Height="38px" Font-Bold="true" Width="100px" 
                Text="Start Time:" />
        <asp:Label ID="lblRowTitle3" runat="server" Height="38px" Font-Bold="true" Width="100px" 
                Text="End Time:" />
        <asp:Label ID="lblRowTitle4" runat="server" Height="25px" BorderColor="#333399" BorderStyle="Solid" BorderWidth="1px" Width="100px" 
                Text="On-Site Hours:" />
        <asp:Label ID="lblRowTitle5" runat="server" Height="30px" BorderColor="#333399" BorderStyle="Solid" BorderWidth="1px" Width="100px" 
                Text="Off-Site Hours:" />
        <asp:Label ID="lblRowTitle6" runat="server" Height="30px" BorderColor="#333399" BorderStyle="Solid" BorderWidth="1px" Width="100px" 
                Text="Lunch:" />
        <asp:Label ID="lblRowTitle7" runat="server" Height="20px" BorderColor="#333399" BorderStyle="Solid" BorderWidth="1px" Width="100px" 
                Text="Category:" />
        <asp:Label ID="lblRowTitle8" runat="server" Height="25px" BorderColor="#333399" BorderStyle="Solid" BorderWidth="1px" Width="100px" 
                Text="Weekly Totals:" />
       <div style="text-align:leftwidth:100px">
        <asp:Label ID="DayofWeekLabel" runat="server"  Width="100px"  
                Text='<%# Eval("TimeRange") %>' />
        </div>
        <asp:Label ID="lblId" runat="server"  Width="100px" Visible="false"  
                Text='<%# Eval("Id") %>' />
        <asp:Label ID="lblDayofWeek" runat="server"  Width="100px" Visible="false"  
                Text='<%# Eval("DayofWeek") %>' />
        </div>
         <div style="text-align:centerwidth:100px">
                <div style="float:lefttext-align:left">
                           <telerik:RadTimePicker ID="RaddtpStart" runat="server"  Width="100px" SharedTimeViewID="sharedTimeView" SelectedDate='<%# Eval("StartTime") %>' ShowPopupOnFocus="True">
                                </telerik:RadTimePicker>
                                <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ErrorMessage="*"
                                ControlToValidate="RaddtpStart" ValidationGroup="group1"></asp:RequiredFieldValidator>
                </div>
                <div style="float:lefttext-align:left">
                           <telerik:RadTimePicker ID="RaddtpEnd"  Width="100px" SharedTimeViewID="sharedTimeView" runat="server" SelectedDate='<%# Eval("EndTime") %>'>
                                 </telerik:RadTimePicker>
                                <asp:RequiredFieldValidator ID="RequiredFieldValidator2" runat="server" ErrorMessage="*"
                                ControlToValidate="RaddtpEnd" ValidationGroup="group1"></asp:RequiredFieldValidator>
                </div>
    <telerik:RadTimeView ID="sharedTimeView" runat="server" StartTime="07:00:00" EndTime="19:00:00" Interval="00:15:00" >
    </telerik:RadTimeView>
    <telerik:RadTimeView ID="sharedDynamicTimeView" runat="server" StartTime="07:00:00" EndTime="19:00:00" Interval="00:15:00">
    </telerik:RadTimeView>
     <br />
    
        <div style="text-align:rightwidth:100px">
         <asp:Label ID="lblRegularTime" runat="server" Height="25px" BorderColor="#333399" BorderStyle="Solid" BorderWidth="1px"  Width="100px" 
                Text='<%# Eval("OnSiteHours") %>' />
        </div>
        <div style="text-align:rightwidth:100px">
        <telerik:RadNumericTextBox ID="lblOffsiteTime" Runat="server" SkinID="CurrencyOnlyBox" Height="25px" BorderColor="#333399" BorderStyle="Solid" BorderWidth="1px"  Width="98px" Text='<%# Eval("OffSiteHours") %>' CssClass="NumericTextStyle">
                    </telerik:RadNumericTextBox>
        </div>
        <div style="text-align:rightwidth:100px">
        <asp:TextBox ID="lblLunchTime" Runat="server" Height="25px" BorderColor="#333399" BorderStyle="Solid" BorderWidth="1px"  Width="98px" Text='<%# Eval("Lunch") %>' CssClass="NumericTextStyle">
                    </asp:TextBox>
        </div>
        <div style="text-align:leftwidth:100px">
        <asp:DropDownList ID="ddlCategory" Width="100px" BackColor="#f1fdfe"  runat="server">
                </asp:DropDownList>
        <asp:Label ID="lblDummy" runat="server" Text="--------------------" Height="20px" BorderColor="#333399" BorderStyle="Solid" BorderWidth="1px" Width="100px"></asp:Label>
        </div>
        <div style="text-align:rightwidth:100px">
         <asp:Label ID="lblTotals" runat="server" Text="0.0" Height="25px" BorderColor="#333399" BorderStyle="Solid" BorderWidth="1px" Width="100px"></asp:Label>
         </div>
        </ItemTemplate>
 
       </asp:DataList>
       </div>
        <table width="520">
            <tr>
                <td style="width208px" valign="top">
                    Notes:</td>
                <td style="width472px">
                    <asp:TextBox ID="txtNotes" runat="server" Height="77px" TextMode="MultiLine" Width="431px"></asp:TextBox></td>
            </tr>
        </table>
        &nbsp;<table width="520">
            <tr>
                <td style="width5103px">
                </td>
                <td style="width434px">
                    <asp:Button ID="btnSubmit" runat="server" Text="Submit" Width="91px" /></td>
            </tr>
        </table>
</div>
</asp:Content>

Am I missing some references or scripts/styles that make it work?  Thanks
Radoslav
Telerik team
 answered on 14 Apr 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?