Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
322 views
Hi,
I am having data in Session and casting it to a Datatable.
and I want to delete some of the rows from that Datatable based on a comparison (please the code below).
it doesnt give the expected result.
could you please advise me on this??


           
            DataTable dtchange = (DataTable)Session["Data"];
            DataSet ds = getdata(txt_HideDual.Text.ToString());
            if (dtchange.Rows.Count != 0)
            {
                for (int i = 0; i < dtchange.Rows.Count; i++)
                {
                    for (int j = 0; j < ds.Tables[0].Rows.Count; j++)
                    {
                        if (dtchange.Rows[i]["Name"].ToString() == ds.Tables[0].Rows[j]["Name"].ToString())
                        {
                            //dtchange.Rows.RemoveAt(i); --- This doesnt work
                            dtchange.Rows[i].Delete();
                            dtchange.AcceptChanges();
                        }
                    }
                }
                             Session["Data"] = dtchange;
            }


Thanking you,


AGM Raja
Shinu
Top achievements
Rank 2
 answered on 29 Nov 2013
2 answers
71 views
Hi,

we are displaing more than 120 columns in the Radgrid which are generated dynamically from the Store Procedure.  we have enabled sorting, Filtering and DragandDrop.

The issue is that, some of the columns in the right most side is not visible when scrolling.

I have even set the Header Item style width and Filter Control width. Still it doesn' t work.

Any fix or work around for this?

Best Regards,
satz

Satz
Top achievements
Rank 1
 answered on 29 Nov 2013
1 answer
84 views
Can someone please look at the demo link below?

http://demos.telerik.com/aspnet-ajax/controls/examples/integration/gridandwindow/defaultvb.aspx?product=grid#qsf-demo-source

When I clicked on Add New Record link button to bring up the Edit form, I could not find the code the show the Edit form (please see attachment for the screenshot)

Thanks,
Sam
Shinu
Top achievements
Rank 2
 answered on 29 Nov 2013
1 answer
111 views
I wrote an application for a client earlier this year that enables drag and drop functionality between two grids (assigned measures and available measures).  The drag and drop works for most of their associates but for a few, it's not functional and they would like me to create a secondary way for them to select and move measures.

They asked for a single button that would allow them to select one or more rows in the available grid, click the button, and move selected rows to the assigned grid, but I thought in my research earlier this year that I found that wasn't possible.  Is it?  Or is it possible to create a command column in each grid with, for example, an arrow pointing to the other grid that when clicked would move the row?

Looking for a push in the right direction on this and examples would be greatly appreciated.

Thanks!
Pavlina
Telerik team
 answered on 28 Nov 2013
3 answers
112 views
I'm making  a grid that displays file system directories and files as a hierarchy
The problem is it only works fine for only the first level of hierarchy, what I should do to make this supports unlimited levels.

here is my code:
ASPX:
<div>
        <telerik:RadGrid ID="RadGrid1" runat="server" AllowMultiRowEdit="True"
            AutoGenerateHierarchy="True" CellSpacing="0" GridLines="None"
            Skin="Windows7" ondetailtabledatabind="RadGrid1_DetailTableDataBind">
            <MasterTableView  DataKeyNames="FullName,IsDirectory,ParentDirectory">
                <DetailTables>
                    <telerik:GridTableView  AutoGenerateColumns="true" DataKeyNames="FullName,IsDirectory,ParentDirectory">
                    </telerik:GridTableView>
                </DetailTables>
            </MasterTableView>
        </telerik:RadGrid>
    </div>


Code File:
public partial class Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            List<FileWrapper> dirs  = new DirectoryInfo("C://").GetDirectories().Select(obj => new FileWrapper(obj, true)).ToList();
            List<FileWrapper> files = new DirectoryInfo("C://").GetFiles().Select(obj => new FileWrapper(obj, true)).ToList();
            dirs.AddRange(files);
            RadGrid1.DataSource = dirs;
            RadGrid1.DataBind();
        }
 
    }
 
    protected void RadGrid1_DetailTableDataBind(object sender, GridDetailTableDataBindEventArgs e)
    {
 
        GridDataItem dataItem = (GridDataItem)e.DetailTableView.ParentItem;
 
        bool isDirectory = bool.Parse(dataItem.GetDataKeyValue("IsDirectory").ToString());
        string FullName = dataItem.GetDataKeyValue("FullName").ToString();
 
        if (isDirectory)
        {
            DirectoryInfo d = new DirectoryInfo(FullName);
            List<FileWrapper> dirs = d.GetDirectories().Select(obj => new FileWrapper(obj, false)).ToList();
            List<FileWrapper> files = d.GetFiles().Select(obj => new FileWrapper(obj, false)).ToList();
            dirs.AddRange(files);
            e.DetailTableView.DataSource = dirs;
        }
    }
 
 
 
 
}
 
 
 
public class FileWrapper
{
    public string Name { get; set; }
    public string FullName { get; set; }
    public bool IsDirectory { get; set; }
    public DateTime CreationTime { get; set; }
    public string ParentDirectory { get; set; }
    public List<FileWrapper> Children { get; set; }
 
    public FileWrapper(object o, bool isRoot)
    {
 
        if (o is FileInfo)
        {
            FileInfo f = (FileInfo)o;
            Name = f.Name;
            FullName = f.FullName;
            CreationTime = f.CreationTime;
            IsDirectory = false;
            if (!isRoot)
            {
                ParentDirectory = f.Directory.FullName;
            }
             
        }
 
        if (o is DirectoryInfo)
        {
            DirectoryInfo d = (DirectoryInfo)o;
            Name = d.Name;
            FullName = d.FullName;
            CreationTime = d.CreationTime;
            IsDirectory = true;
            if (!isRoot)
            {
                ParentDirectory = d.Parent.FullName;
            }
             
        }
    }
}

Pavlina
Telerik team
 answered on 28 Nov 2013
3 answers
102 views

Have deployed a website to Azure websites and one of the pages has a SocialShare Send Email button.  The popup send email form includes the Radcaptcha and by default has the "Get Audio Code" option.







When visiting the page I get a message "This web page wants to run the following add-on: 'Windows Media Player"  It took me awhile to figure out why and than noticed that the popup form generated from SocialShare SendEmail has the Audio code option.



So when debugging the page (on the basis that a user chooses not to select the Allow) when proceeding to redirect the page I get error:  "An unhandled exception of type 'System.NullReferenceException' occurred in System.Speech.dll"



(note I don't get this error when running local). 







I am assuming this is being caused by the SocialShare Radcaptcha needing the add-on and errors out without it.



In any case I am happy to disable the AudioCode option as I have also done this on another Radcaptcha on the same page.







Is there a way to disable the Audiocode option on SocialShare Send Email button?







Thanks











Danail Vasilev
Telerik team
 answered on 28 Nov 2013
1 answer
99 views
Hi,

I have a simple page with a RadUpload, RadProgressArea and RadProgressManager.
When visitors upload one or more files, click on 'Upload Files', the files start uploading and the RadProgressArea 
appears.

So far so good.

After uploading, I do a Request.RawUrl, meaning it reloads the page, binds a grid and shows the uploaded files.

Inside this grid there is a Download button. When you click this button, the file will be downloaded (forced with the Save As dialog).
When you click this buttons, the RadProgressArea appears again, and can't be cancelled or whatever.

I don't want this thing to show up, but only when actually uploading files.

Can I do something about it?

Thanks,
Daniel
Hristo Valyavicharski
Telerik team
 answered on 28 Nov 2013
2 answers
91 views
Hi Team,

We are facing an issue in Radslider while displaying the value through C#.
I have submitted the aspx code , css and error image.
 We are using  Telerik version : 2011, 2, 915, 35

CSS
<style type="text/css">
    
    .OutlookSkinGradBackground
        {
            background:#043199 0 -2100px repeat-x url('img/sprite.gif');
            color:#fff;
            height: 50px;
            text-align: center;
            vertical-align: middle;   
        
    .contentWrapper
    {
        width:100%;
        margin:0 auto;
    }
     
    .mainContent
    {
     padding-left:25%;
     padding-top:10px;
    }
     
     
    #header {
        padding:0.5% 1%;
        background:#ddd;
        height:3.2em;
        text-align:center;
    }
 
     .footer
     {
         clear:both;
         padding:5px 10px;
     }
 
 
    #footer p
    {
        margin:0;
    }
 
    .sliderTable     {
        float: left; 
        width: 500px;
        border-style: solid;
        border-width: 1px;
        border-color: #CCCCFF;
        padding:10px ;
    }
      
    .sliderHeader, .fuelEconSliderHeader, .payloadSliderHeader, .bioContentSliderHeader,.cO2EfficiencySliderHeader
    {
        width: 150px;
        font-family:Verdana;
        font-weight:bold;
        font-size: 0.8em;
        vertical-align: middle;
        text-align: center;
        border-style:groove;
        border-width: 1px;
        color: #FFFFFF;
        height: 50px;
        border-style: solid;
        border-width: 1px;
        border-color: #CCCCFF;
    }
        
    .fuelEconSliderHeader
    {
        background-color: #660066;
    }
     
    .payloadSliderHeader
    {
        background-color: #009999;
    }
 
    .bioContentSliderHeader
    {
        background-color: #99CC00;
    }
       
    .cO2EfficiencySliderHeader
     {
        background-color: #89A54E;
 
     }
       
    .sliderValue
    {
        text-align: left;
        font-family:Verdana;
        font-size:1.0em;
        padding-top:10px;
        padding-left:65px;
        border-style: solid;
        border-width: 1px;
        border-color: #CCCCFF;
        height:30px;
  }
    
    .tableSliderTd
    {
        border-style: solid;
        border-width: 1px;
        border-color: #CCCCFF;
        padding-bottom:10px;
        padding-bottom:10px;
   }
      
      .tableSliderWrapper
 
    {
         vertical-align:top;
         text-align:center;
         width: 150px;
   }
   
     
    .tableSliderActualValue
    {
         float:left;
         width: 55px;
         text-align: right;
         font-family:Verdana;
         font-size:0.8em;
         padding-top:140px;
  }
        
    .tableSliderTrackContainer
    {
      float:right;
      width: 95px;
    }
  
    .HiddenItems .rslItem span
    {
        visibility:hidden;
    }
     
    .errorText
    {
        font-family:Verdana;
        font-size:small;
        color:Red;
        float:left;
    }
     
    .hiddenFields
    {
        visibility:hidden;
    }
     
     
    .metricsSummaryTableDiv
    {
         clear:both;
         padding-top:10px;
         padding-left:10px;
    }
     
    .metricsSummaryTableNoBordersTD
    {
     border-collapse:collapse;
     border-width:0px;
    }
     
     
    .metricsSummaryTableHeaderTD,.metricsSummaryTableFactorTD, .metricsSummaryTableValueTD
    {
        text-align:center;
        font-family:Verdana;
        border-style: solid;
        border-width: 1px;
        border-color: #CCCCFF;
   }
    
    
   .metricsSummaryTableHeaderTD,.metricsSummaryTableFactorTD, .metricsSummaryTableValueTD,.metricsSummaryTableImageTD
   {
        text-align:center;
        font-family:Verdana;
        border-style: solid;
        border-width: 1px;
        border-color: #CCCCFF;
        width:115px;
   }
     
    .metricsSummaryTableHeaderTD
    {
        font-size:0.75em;
    }
     
     
    .metricsSummaryTableFactorTD
    {
        font-size:0.8em;
        font-weight:bold;
        height:30px;
    }
     
    .metricsSummaryTableValueTD
    {
        font-size:1.0em;
        height:30px;
        width:80px;
        padding-left:20px;
    }
     
    .metricsSummaryTableImageTD
    {
    }
     
    .gen-report-logo {
        float:left;
    }
     
    .gen-report-header-Title {
        float:right;
        margin-right:25%;
        width:50%
    }
     
    .genricReportFilterText
    {
        text-align:center;
        text-align:center;
        font-size:1em;
        margin-bottom: 2px;
    }
     
     
    .genricReportTitle
    {
        text-align:center;
        font-size:1.5em;
        font-weight:bold;
        margin-bottom: 2px;
    }
     
        /* Turn Red Color on Links Roll Over */
        a.SelectedItem:link,
        a.SelectedItem:visited {
          color:#333333;
        }
 
        a.SelectedItem:hover {
          color:Red;
        }
        /*  -- Changes the Color on Link Clicked
        a.SelectedItem:active {
          color:#ffffff;
        } */
        /* Turn Red Color on Links Roll Over */
     
</style>
 
 
 
 
 
 
 
 
SLIDEBAR
<div class="mainContent">
   
             <table class="sliderTable" id="SliderContainer" runat="server">
 
                    <%--------------------------------------------%>                   
                    <%-- Header Row                             --%>
                    <%--------------------------------------------%>                   
                   <tr>
                       <%--         Fuel Econ Slider               --%>
                       <td class ="fuelEconSliderHeader">                
                            <asp:Label
                                ID      ="fuelEconomyHeaderLabel"
                                runat   ="server" >
                            </asp:Label>
                       </td>
       
                       <%--           Payload Slider               --%>
                       <td class ="payloadSliderHeader">
                            <asp:Label
                                ID      ="payloadHeaderLabel"
                                runat   ="server" >
                            </asp:Label>
                        </td>
 
                       <%--           Bio Content Slider           --%>
                       <td class ="bioContentSliderHeader">
                            <asp:Label
                                ID      ="bioContentHeaderLabel"
                                runat   ="server" >
                            </asp:Label>
                       </td>
 
                       <%--          CO2 Efficiency Slider         --%>
                       <td class ="cO2EfficiencySliderHeader">
                            <asp:Label
                                ID      ="cO2EfficiencyHeaderLabel"
                                runat   ="server" >
                            </asp:Label>
                        </td>
                    </tr>
 
                    <%--------------------------------------------%>                   
                    <%-- slider Value Row                       --%>
                    <%--------------------------------------------%>                   
                    <tr>
                        <td>
                            <div class ="sliderValue">
                                <asp:Label
                                        ID          ="FuelEconSliderValueLabel"
                                        runat       ="server"
                                        Text        ="0"
                                        ToolTip     ="FuelEconomySliderValueToolTip" >
                                 </asp:Label>
                            </div>
                        </td>    
               
                        <td>
                            <div class ="sliderValue">
                                <asp:Label
                                        ID          ="PayloadSliderValueLabel"
                                        runat       ="server"
                                        Text        ="0"
                                        ToolTip     ="PayloadSliderValueToolTip" >
                                </asp:Label>                      
                            </div>
                        </td>    
 
                        <td>
                            <div class="sliderValue">
                                 <asp:Label
                                        ID          ="BioContentSliderValueLabel"
                                        runat       ="server"
                                        Text        ="0"
                                        ToolTip     ="BioContentSliderValueToolTip"  >
                                  </asp:Label>
                             </div>                     
                        </td>    
      
                        <td style="background-color: #EEEEEE">
                            <div class ="sliderValue">
                                   <asp:Label
                                        ID          ="CO2EfficiencySliderValueLabel"
                                        runat       ="server"
                                        Text        ="0"
                                        ToolTip     ="CO2EfficiencySliderValueToolTip"
                                    </asp:Label>
                            </div>
                        </td>    
                    </tr>
 
                    <%--------------------------------------------%>                   
                    <%-- slider Row                             --%>
                    <%--------------------------------------------%>                   
                    <tr>
                        <td class="tableSliderTd">
                            <div class="tableSliderWrapper">
                                <div class="tableSliderActualValue" >
                                    <asp:Label
                                        ID          ="FuelEconomyActualValueLabel"
                                        runat       ="server"
                                        Text        ="0"
                                        ToolTip     ="FuelEconomyActualValueToolTip" >
                                    </asp:Label>
                                </div>
                                <div class="tableSliderTrackContainer">
                                   <telerik:RadSlider
                                            ID                      ="RadSliderEconomy"
                                            runat                   ="server" 
                                            Width                   ="60px"
                                            Height                  ="300px"
                                            TrackPosition           ="TopLeft"
                                            OnClientValueChanged    ="FuelEconSliderValueChanged"
                                            IsDirectionReversed     ="true"
                                            Orientation             ="Vertical"
                                            MinimumValue            ="15"
                                            MaximumValue            ="45"
                                            SmallChange             ="1"
                                            LargeChange             ="5"
                                            ItemType                ="Tick"
                                           Skin                     ="Office2007" >
                                     </telerik:RadSlider>
                                </div>
                             </div>
                        </td>
                         
                        <td class="tableSliderTd">
                            <div class="tableSliderWrapper">
                                <div class="tableSliderActualValue" id="Div1">
                                    <asp:Label
                                        ID          ="PayloadActualValueLabel"
                                        runat       ="server"
                                        Text        ="0"
                                        ToolTip     ="PayloadActualValueToolTip" >
                                    </asp:Label>
                                </div>
                                <div class="tableSliderTrackContainer">
                                   <telerik:RadSlider
                                            ID                      ="RadSliderPayload"
                                            runat                   ="server" 
                                            Width                   ="60px"
                                            Height                  ="300px"
                                            TrackPosition           ="TopLeft"
                                            OnClientValueChanged    ="PayloadSliderValueChanged"
                                            IsDirectionReversed     ="true"
                                            Orientation             ="Vertical"
                                            MinimumValue            ="5"
                                            MaximumValue            ="25"
                                            SmallChange             ="1"
                                            LargeChange             ="5"
                                            ItemType                ="Tick"
                                            Skin                     ="Office2007" >
                                         </telerik:RadSlider>
                                </div>
                            </div>
                         </td>
 
                        <td class="tableSliderTd">
                            <div class="tableSliderWrapper">
                                <div class="tableSliderActualValue" id="BioContentActualValue">
                                       <asp:Label
                                        ID          ="BioContentActualValueLabel"
                                        runat       ="server"
                                        Text        ="0"
                                        ToolTip     ="BioContentActualValueToolTip" >
                                    </asp:Label>
                               </div>
                                <div class="tableSliderTrackContainer">
                                         <telerik:RadSlider
                                            ID                      ="RadSliderBioContent"
                                            runat                   ="server" 
                                            Width                   ="60px"
                                            Height                  ="300px"
                                            TrackPosition           ="TopLeft"
                                            OnClientValueChanged    ="BioContentSliderValueChanged"
                                            IsDirectionReversed     ="true"
                                            Orientation             ="Vertical"
                                            MinimumValue            ="2"
                                            MaximumValue            ="5"
                                            SmallChange             ="0.1"
                                            LargeChange             ="1"
                                            ItemType                ="Tick"
                                           Skin                     ="Office2007" >
                                      </telerik:RadSlider>
                                  </div>
                              </div>
                          </td>
      
                        <td class="tableSliderTd" style="background-color: #EEEEEE">
                           <div class="tableSliderWrapper">
                                <div class="tableSliderActualValue" >
                                       <asp:Label
                                        ID          ="CO2EfficiencyActualValueLabel"
                                        runat       ="server"
                                        Text        ="0"
                                        ToolTip     ="CO2EfficiencyActualValueToolTip">
                                    </asp:Label>
                                </div>
                                <div class="tableSliderTrackContainer" >
                                     <telerik:RadSlider
                                            ID                      ="CO2EfficiencySlider"
                                            runat                   ="server" 
                                            Width                   ="60px"
                                            Height                  ="300px"
                                            TrackPosition           ="TopLeft"
                                            IsDirectionReversed     ="true"
                                            Orientation             ="Vertical"
                                            OnClientValueChanging   ="OnBeforeCO2EfficiencyValueChange"
                                            MinimumValue            ="0"
                                            MaximumValue            ="100"
                                            SmallChange             ="1"
                                            LargeChange             ="10"
                                            ItemType                ="Tick" 
                                            ShowDragHandle          ="true"                                
                                            ShowDecreaseHandle      ="false"
                                            ShowIncreaseHandle      ="false"
                                           Skin                     ="Office2007" >
                                      </telerik:RadSlider>
                                   </div>
                            </div>
                        </td>
                     </tr>
            </table>     
             
            <%--------------------------------------------%> 
            <%-- Metrics Summary                        --%>
            <%--------------------------------------------%>                   
           
            <div class="metricsSummaryTableDiv">
                <table>
                    <tr>
                        <td class="metricsSummaryTableNoBordersTD" />
 
                        <td class ="metricsSummaryTableHeaderTD">
                            <asp:Label
                                ID      ="EstimatedCO2EfficiencyMetricsHeader"
                                runat   ="server" >
                            </asp:Label>
                        </td>
 
                        <td class ="metricsSummaryTableHeaderTD">
                            <asp:Label
                                ID      ="ActualCO2EfficiencyMetricsHeader"
                                runat   ="server" >
                            </asp:Label>
                        </td>
 
                        <td class ="metricsSummaryTableHeaderTD">
                            <asp:Label
                                ID      ="TargetCO2EfficiencyMetricsHeader"
                                 runat   ="server" >
                            </asp:Label>
                        </td>
 
                        <td class="metricsSummaryTableNoBordersTD" />
 
                    </tr>
                     
                    <tr>              
                       <td class ="metricsSummaryTableFactorTD">
                            <asp:Label
                                ID      ="MetricsSummaryTableFactorName"
                                Text    ="MetricsSummaryTableFactorName"
                                runat   ="server" >
                            </asp:Label>
                       </td>
                     
                       <td class ="metricsSummaryTableValueTD">
                            <asp:Label
                               ID       ="EstimatedCO2EfficiencyMetricsValue"
                               text     ="0"     
                               runat    ="server" >
                            </asp:Label>
                       </td>
 
                       <td class ="metricsSummaryTableValueTD">
                            <asp:Label
                                ID      ="ActualCO2EfficiencyMetricsValue"
                               text     ="0"     
                               runat    ="server" >
                            </asp:Label>
                       </td>
                     
                       <td class ="metricsSummaryTableValueTD">
                            <asp:Label
                                ID      ="TargetCO2EfficiencyMetricsValue"
                               text     ="0"     
                               runat    ="server" >
                            </asp:Label>
                       </td>
                         
                       <td class ="metricsSummaryTableImageTD">
                           <asp:Image
                                ID      ="CO2EfficiencyTargetIndicatorImage"
                                runat   ="server"
                                ImageUrl="" />
                       </td>
                    </tr>
                </table>
            </div>       
       </div>
Slav
Telerik team
 answered on 28 Nov 2013
1 answer
119 views
I have a radtabstrip that I use as a wizard.
Each tab is a usercontrol. The user can navigate between the tabs using the prev and next buttons on the page or by clicking on the tabs.

I have a customvalidator on each of my tabs. They seem to work fine on the prev/next buttons. However when i use the tabs to navigate the validation does not work right the first time.

I am setting my validationgroup for the tabstrip as below:

<telerik:RadTabStrip ID="rtsBeneficiaryChange" SelectedIndex="0" runat="server" MultiPageID="rmBeneficiaryChange"
                    OnTabClick="rtsBeneficiaryChange_TabClick" EnableEmbeddedSkins="false" Skin="MBen"
                    OnClientTabSelected="UpdateValidationGroup"
                    CausesValidation="true" AutoPostBack="true">
                </telerik:RadTabStrip>
 
script:
function UpdateValidationGroup(sender, args) {
                //            args.set_cancel(!Page_IsValid);
                var tabStrip = sender;
                var selectedTab = tabStrip.get_selectedTab();
                if (selectedTab != null)
                    tabStrip.ValidationGroup = selectedTab.get_value();
                alert(tabStrip.ValidationGroup);
            }
    protected void rtsBeneficiaryChange_TabClick(object sender, RadTabStripEventArgs e)
    {
 
        Page.Validate(rtsBeneficiaryChange.ValidationGroup);
        if (Page.IsValid)
            rtsBeneficiaryChange.ValidationGroup = e.Tab.Value;
}

It seems the validationgroup is not being set right when i use the prev/next buttons on each tab.
Can you suggest what I am doing wrong?
Nencho
Telerik team
 answered on 28 Nov 2013
3 answers
502 views

Referring to the following example, how can I get the CheckAll Checklist to check/uncheck all CheckBoxSelect checkboxes using javascript/jquery?



<telerik:RadListView ID="RadListView1" runat="server" ItemPlaceholderID="PlaceHolder1">

<ItemTemplate>

<div class="favOuter">

<asp:CheckBox ID="CheckBoxSelect" runat="server" CssClass="favCheck"  />

</div>

</ItemTemplate>

<LayoutTemplate>

<asp:PlaceHolder ID="PlaceHolder1" runat="server"></asp:PlaceHolder>

<div class="actionRow">

<asp:CheckBox ID="CheckAll" runat="server" ToolTip="SelectAll" />

</div>

</LayoutTemplate>

</telerik:RadListView>


Konstantin Dikov
Telerik team
 answered on 28 Nov 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?