Telerik Forums
Kendo UI for jQuery Forum
1 answer
116 views
I meant ClientTemplate. It won't let me edit the title of this post.

        columns.Bound(t => t.IsOpen)
        .Title("Status")
        .ClientTemplate(
            "# if (#=IsOpen# == 'True') { #" +
            "something" +
            "# } else { #" +
            "something else" +
            "# } #"
        );

Uncaught Error: Invalid template:'<tr data-uid="#=uid#"><td ># if (#=IsOpen# == 'True') { #something# } else { #something else# } #</td></tr>' Generated code:'var o,e=kendo.htmlEncode;with(data){o='<tr data-uid="'+(uid)+'"><td >'; if (;o+='=IsOpen'; == 'True') { ;o+='something'; } else { ;o+='something else'; } ;o+='</td></tr>';}return o;'

        
Atanas Korchev
Telerik team
 answered on 10 Dec 2012
1 answer
97 views
Are the WPF/SL diagramming controls to be brought to HTML/JavaScript?
Sebastian
Telerik team
 answered on 10 Dec 2012
1 answer
156 views
I need to create a scheme where my pages open windows within the iframe contained in KendoWindow.
To establish a modal window I need to create it from within my home, because if you create it within a modal child page to only cover the child page.
I'm having to develop a scheme for windows like a desktop application.
Below is the JavaScript library I wrote to do this for me:


var kendoWindowFactory = new function () {
 
    var __modalKendoWindow;
    var __functionCallback;
 
    this.createKendoWindow = createKendoWindow;
    this.createModalKendoWindow = createModalKendoWindow;
    this.modalReturn = modalReturn;
 
    function createKendoWindow(element) {
 
        var frameId = "___kendoWindow_" + element.id;
 
        var LINK = element.href;
        var TITLE = $(element).attr("data-title");
        var WIDTH = $(element).attr("data-width");
        var HEIGHT = $(element).attr("data-height");
 
        if (!(parseFloat(WIDTH) > 0)) {
            WIDTH = "50%";
        }
 
        if (!(parseFloat(HEIGHT) > 0)) {
            HEIGHT = "50%";
        }
 
        var kendoWindow = document.getElementById(frameId);
 
        if (kendoWindow) {
            $(kendoWindow).data("kendoWindow").toFront();
        }
        else {
            kendoWindow = $("<div />")
                .attr({ id: frameId })
                .appendTo("body");
 
            $(kendoWindow).kendoWindow({
                title: TITLE,
                modal: false,
                width: WIDTH,
                height: HEIGHT,
                content: LINK,
                visible: false,
                deactivate: function () {
                    this.destroy();
                },
            }).data("kendoWindow").center().open();
 
            $(kendoWindow).css({ overflow: "none" });
        }
 
        return false;
    }
 
    function createModalKendoWindow(element, functionCallback) {
 
        var frameId = "___kendoWindowModal_";
 
        __modalKendoWindow = null;
        __functionCallback = functionCallback;
 
        var LINK = element.href;
        var TITLE = $(element).attr("data-title");
        var WIDTH = $(element).attr("data-width");
        var HEIGHT = $(element).attr("data-height");
 
        if (!(parseFloat(WIDTH) > 0)) {
            WIDTH = "770px";
        }
 
        if (!(parseFloat(HEIGHT) > 0)) {
            HEIGHT = "470px";
        }
 
        var kendoWindow = document.getElementById(frameId);
        if (!kendoWindow) {
            kendoWindow = $("<div>").attr({ id: frameId }).appendTo("body");
        }
 
        __modalKendoWindow = $(kendoWindow).kendoWindow({
            title: TITLE,
            modal: true,
            width: WIDTH,
            height: HEIGHT,
            visible: false,
            deactivate: function () {
                this.destroy();
            },
        }).data("kendoWindow").center().refresh(LINK).open();
 
        $(kendoWindow).css({ overflow: "none" });
 
        return false;
    }
 
    function modalReturn(value) {
        __modalKendoWindow.close();
        if (value) {
            if (__functionCallback) {
                __functionCallback(value);
            }
        }
    }
}
The application is being written with Visual Studio 2012 with a WebForms application.


So I set my menu to open the windows. This is the main page:
<script>
     $(function () {
         $('#tabMenu a').click(function (e) {
             e.preventDefault();
             kendoWindowFactory.createKendoWindow(this);
         });
     });
 
     $(document).ready(function () {
         $("#tabMenu").kendoTabStrip();
     });
 </script>


So I set the child pages (which are opened within kendoWindows using iframe) to open a modal window.
Fits a search window, for example:
<script type="text/javascript">
    function returnValue(value) {
        document.getElementById("<%= txtCodigo.ClientID.ToString() %>").value = value;
        __doPostBack("Municipio.aspx", "txtCodigo_TextChanged");
    }
 
    $(function () {
        $("#<%= btnConsultar.ClientID.ToString() %>").click(function (e) {
            e.preventDefault();
            window.parent.kendoWindowFactory.createModalKendoWindow(this, returnValue);
        });
    });
</script>

Every kendoWindow is created and removed dynamically.

To return a selection made in the modal window use this code:
<script type="text/javascript">
    $(function () {
        $("#grvMunicipio").kendoGrid({
            columns: [
                { field: "Codigo", title: "Código" },
                { field: "Descricao", title: "Município" },
                { field: "Uf", title: "Estado" }
            ],
            dataSource: {
                pageSize: 15
            },
            sortable: true,
            selectable: true,
            pageable: {
                refresh: true,
                pageSizes: true
            }
        });
 
        $('#grvMunicipio').dblclick(function () {
            var Grid = $("#grvMunicipio").data("kendoGrid")
            Grid.select().each(function () {
                var dataItem = Grid.dataItem($(this));
                RetornaValor(dataItem.Codigo);
            });
        });
    });
</script>
I use a callback routine passed as a parameter to the main page, the JavaScript function created, which is to destroy the modal window and return the value to the desired field.

My problem is: When I open the modal window by button link child window, the child window is frozen.
I close the modal and I can no longer use the controls / window elements daughter.
However, when moving the child window with the mouse controls are released.

The child page now has no code in your code behind.

Can anyone help me with a particular problem?

From now on, thank you all!
Tiago
Top achievements
Rank 1
 answered on 10 Dec 2012
5 answers
125 views

We are very interesting about the telerik products we have gone through the many kendo examples which provided in telerik official website as well as in other forums but we just get the simple staff.

We are planning to start a new web project with the MVVM frame work with Kendo . We are unable to find the complete real example for Kendo UI for web based systems as you have developed it for telerik Ajax(eg : sales Dash Board).

If it is their sample code please be kind enough to send us

We are very much interesting to get you feed back on this

BS 

Development Team
Dimo
Telerik team
 answered on 10 Dec 2012
1 answer
123 views
Hi ,

when i bind dynamic column to telerik gid, filter(column search) icon is overlapping on  existed column text.PFA(OverlappingColumnName.jpg) for your reference.

I have display the full  column name with filter icon.

Note:
Number of columns will be changed based on permission.(admin role - 20 columns, customer role -10 columns)

please help me on this ASAP.
Nishant
Top achievements
Rank 1
 answered on 10 Dec 2012
3 answers
1.1K+ views
We would like to update a data source when a refresh button is clicked. In my javascript file I have the following declared:

var seriesData1 = [{"UnitNumber":"1010", "percent":85, "PMTYPE":"ODOMETER", "CompCode":"000-003"}, {"UnitNumber":"1010", "percent":75, "PMTYPE":"Days", "CompCode":"000-005"}];

I have this defined in my index.html:

<script>
function createChart() {
$("#chart").kendoChart({
theme: $(document).data("kendoSkin") || "black",
dataSource: {
data: seriesData1

},
title: {
text: "PMs Due"
},
legend: {
position: "top"
},
seriesDefaults: {
type: "column"
},
series: [
{
name: "% Due",
field: "percent"
}
],
valueAxis: {
labels: {
format: "{0}%"
}
},
categoryAxis: {
field: "CompCode"
},
tooltip: {
visible: true,
format: "{0}%"
}
});
}
</script>

When I click on the refresh button I am changing the values as follows in my javascript:

seriesData1 = [{"UnitNumber":"1010", "percent":35, "PMTYPE":"ODOMETER", "CompCode":"000-060"}, {"UnitNumber":"1010", "percent":75, "PMTYPE":"Days", "CompCode":"000-005"}];

$(".chart").data("kendoChart").redraw();

All that has changed is the percent and comp code of the first record .

On first load data is displayed without error however when the button is clicked to redraw the graph, the data is cleared and nothing is updated leaving a blank chart.

Is there anything else that I have to do to update the data source?

T. Tsonev
Telerik team
 answered on 10 Dec 2012
0 answers
151 views
Following is an example of using facebook login for your kendo mobile webapp

http://www.grapto.com/publication/314/416 (web browser)
http://www.grapto.com/mobile/publication/314/416 (mobile)

the workaround on function LogIn() is for iPhone pinned on homescreen webapps. It will ask for login without poping the safari browser.
you may remove this workaround if you don't want to run your app on iPhone homescreen. Keep it if you want to publish with phonegap or other tools.

contact me for any further thoughts or if you need help implementing your own facebook apps with kendoui.
Fotis Papppas
Top achievements
Rank 2
 asked on 09 Dec 2012
1 answer
211 views
Hello, either there is a memory leak with grid's (when used with a filter) or I'm using it wrong.  I'm hoping that I'm using it wrong!  So I've created a jsfiddle that demonstrates the problem below.  The problem seems to be that when i reload the grid (by removing the grid first) it seems to leave the hidden k-filter-menu behind in the dom.  If you keep on clicking reload you will eventually run out of memory.  You can best see the problem if you load up firefox + firebug.  Inspect the grid and click reload, you'll notice the orphaned filter forms keep on adding up.

http://jsfiddle.net/nZ7j3/5/

ps. i didn't bother create a fiddle for it, but the same problem exists for any kendo object that maintains a hidden form element (i'm generalizing but i've definitely seen it on the DropDownList, ComboBox)
Christopher Ronak
Top achievements
Rank 1
 answered on 09 Dec 2012
9 answers
298 views
Hi All,
Can we use splitter for mobile web apps?
Thomas
Top achievements
Rank 1
 answered on 08 Dec 2012
2 answers
599 views
Hi folks, I have been trying to figure out why my KendoUI grid will not call the controller when attempting to batch save.  As part of my troubleshooting, I created a number of ActionResults with different parameters and breakpointing in each one, hoping that I would hit one of these breakpoints.  No matter what method that I use in my view to call the controller to save, nothing happens.

I have two cascading Kendo DropDownLists (which work fine), and upon the user selecting an item in the second DropDownList, I populate a KendoUI grid via JSON.  The user can then fill in the New Rate field to whatever they want, and finally click a save button to batch update.  The user can increase (and later decrease, when I implement it) a percentage across the board via a TextBox and button.

I come from the ASPX and WinForms world, so jQuery and javascript in general are not my strong suits.

Here is the pertinent source code.  I added some javascript alerts, to help troubleshoot.  Note that the Kendo and jQuery scripts are referenced in a layout page as follows:
       <script src="@Url.Content("~/Scripts/jquery-1.8.3.min.js")" type="text/javascript"></script>
       <script src="@Url.Content("~/Scripts/kendo.web.min.js")" type="text/javascript"></script>
       <script src="@Url.Content("~/Scripts/kendo.aspnetmvc.min.js")" type="text/javascript"></script>


ViewModel

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using MyReloWorks.Service.Models.ServiceManager;
using System.ComponentModel.DataAnnotations;

namespace MRW_MVC.Areas.SM.Models
{
    public class SFRRatesVM
    {
        [Key]
        public int SFRID { get; set; }
        public int ModeID { get; set; }
        public int DistanceID { get; set; }
        public int MeasurementID { get; set; }
        [Display(Name = "Distance (Miles)")]
        public string Distance { get; set; }
        public decimal CurrentRate { get; set; }
        [Display(Name = "Effective Date")]
        public DateTime EffectiveDT { get; set; }
        public decimal NewRate { get; set; }
    }
}

Controller:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using MRW_MVC.Controllers;
using MyReloWorks.Service.Services;
using MRW_MVC.Areas.SM.Models;
using Kendo.Mvc.Extensions;
using Kendo.Mvc.UI;
using MyReloWorks.Service.Models.ServiceProvider;
using MyReloWorks.Service.Models.ServiceManager;

namespace MRW_MVC.Areas.SM.Controllers
{
    [Authorize(Roles = "SM-Manager-HHG")]
    public class SFREntryController : AuthenticationController
    {
        private ISMService _smSerivce;
        private IShipmentService _shipmentService;

        public SFREntryController(ISMService smService, IShipmentService shipmentService)
        {
            _smSerivce = smService;
            _shipmentService = shipmentService;
        }

        public ActionResult Index()
        {
            return View();
        }

        public JsonResult GetCascadeModes()
        {
            var modeList = _shipmentService.GetMode("HHG");
            return Json(modeList.Select(m => new { ModeID = m.ModeID, ModeName = m.ModeDesc }), JsonRequestBehavior.AllowGet);
        }

        public JsonResult GetCascadeMeasurements(string modes)
        {
            var modeID = Convert.ToInt32(modes);
            var measurementList = _smSerivce.GetMeasurementsByModeID(modeID);              
            return Json(measurementList.Select(m => new { MeasurementID = m.MeasurementID, MeasurementName = m.MeasurementValue }), JsonRequestBehavior.AllowGet);
        }

        public JsonResult GetRates([DataSourceRequest]DataSourceRequest request, string mode, string measurement)
        {
            IList<SFRRatesVM> vm = new List<SFRRatesVM>();

            if (mode != "" && measurement != "")
            {
                var modeID = Convert.ToInt32(mode);
                var measurementID = Convert.ToInt32(measurement);
                var rates = _smSerivce.GetSFRRatesByModeIDAndMeasurementID(modeID, measurementID);

                //place data into the ViewModel's format
                foreach (SFRDTO rate in rates)
                {
                    var temp = new SFRRatesVM();
                    {
                        temp.SFRID = rate.SFRID;
                        temp.DistanceID = rate.DistanceID;
                        temp.ModeID = rate.ModeID;
                        temp.MeasurementID = rate.MeasurementID;
                        temp.Distance = rate.DistanceInfo.DistanceDesc;
                        temp.CurrentRate = rate.Rate;
                        temp.EffectiveDT = rate.EffectiveDT;
                        vm.Add(temp);
                    }
                }
                
            }
            DataSourceResult result = vm.ToDataSourceResult(request);
            return Json(result, JsonRequestBehavior.AllowGet);
        }

        [HttpPost]
        public ActionResult UpdateRates()
        {
            throw new NotImplementedException();
        }

        public ActionResult UpdateRates(Models.SFRRatesVM request)
        {
            throw new NotImplementedException();
        }


        [AcceptVerbs(HttpVerbs.Post)]
        public ActionResult UpdateRates([DataSourceRequest] DataSourceRequest request, IEnumerable<SFRRatesVM> vm)
        {
            //TODO: handle multiple modes
            if (vm != null && ModelState.IsValid)
            {
                //get the old rates
                var oldRates = _smSerivce.GetLiftVanRates();

                // for each DistanceID, check the old rate to the "new" rate, and update accordingly
                foreach (SFRRatesVM rate in vm)
                {
                    var temp = new SFRDTO();
                    {
                        temp = oldRates.Where(r => r.SFRID == rate.SFRID).FirstOrDefault();
                        if (temp.Rate != rate.NewRate)
                        {
                            _smSerivce.UpdateSFRRate(temp, rate.NewRate);
                        }
                    }
                }
            }
            return Json(ModelState.ToDataSourceResult());
        }

        [HttpPost]
        public ActionResult UpdateRates(IEnumerable<SFRRatesVM> vm)
        {
            //TODO: handle multiple modes
            if (vm != null && ModelState.IsValid)
            {
                //get the old rates
                var oldRates = _smSerivce.GetLiftVanRates();

                // for each DistanceID, check the old rate to the "new" rate, and update accordingly
                foreach (SFRRatesVM rate in vm)
                {
                    var temp = new SFRDTO();
                    {
                        temp = oldRates.Where(r => r.SFRID == rate.SFRID).FirstOrDefault();
                        if (temp.Rate != rate.NewRate)
                        {
                            _smSerivce.UpdateSFRRate(temp, rate.NewRate);
                        }
                    }
                }
            }
            return Json(ModelState.ToDataSourceResult());
        }

        public ActionResult GenerateReport()
        {
            return View();
        }
    }
}


View:
@{
    ViewBag.Title = "Index";
    Layout = "~/Views/Shared/_Layout.cshtml";
}

<h2>Service Management - Manage SFR Rates</h2>

        <label for="modes">Modes:</label>
        @(Html.Kendo().DropDownList()
            .Name("modes")
            .OptionLabel("Select a mode..")
            .DataTextField("ModeName")
            .DataValueField("ModeID")          
            .DataSource(source =>
            {
                source.Read(read =>
                {
                    read.Action("GetCascadeModes", "SFREntry");
                });
            })
        )
    
        <label for="measurements">Measurements:</label>
        @(Html.Kendo().DropDownList()
            .Name("measurements")
            .OptionLabel("Select a measurement...")
            .DataTextField("MeasurementName")
            .DataValueField("MeasurementID")
            .DataSource(source =>
            {
                source.Read(read =>
                {
                    read.Action("GetCascadeMeasurements", "SFREntry")
                        .Data("filterMeasurements");
                })
                .ServerFiltering(true);
            })
            .Events(e => e.Change("measurementChanged"))
            .Enable(false)
            .AutoBind(false)
            .CascadeFrom("modes")
        )

    <br />
    <br />

        @(Html.Kendo().Grid<MRW_MVC.Areas.SM.Models.SFRRatesVM>()
            .Name("myGrid")
            .HtmlAttributes(new { style = "width:500px" })
            .Columns(columns => {
                columns.Bound(p => p.SFRID).Hidden();
                columns.Bound(p => p.Distance).Width(25);
                columns.Bound(p => p.CurrentRate)
                    .Format("{0:C}")
                    .Width(25)
                    .HtmlAttributes(new { style = "text-align: right" });
                columns.Bound(p => p.EffectiveDT)
                    .Format("{0:d}")
                    .Width(25);
                columns.Bound(p => p.NewRate)
                    .Format("{0:C}")
                    .Width(25)
                    .HtmlAttributes(new { style = "text-align: right" });
            })
            .Editable(editable => editable.Mode(GridEditMode.InCell))
            .Resizable(resize => resize.Columns(true))
            .AutoBind(false)
            .Events(events =>
            {
                events.SaveChanges("onSaveChanges");
            })
            .ToolBar(toolbar=> toolbar.Save())
            .DataSource(dataSource => dataSource
                .Ajax()
                .Events(events => events.Error("error_handler"))
                .Batch(true)
                .Model(model => 
                {
                    model.Id(p => p.SFRID);
                    model.Field(p => p.Distance).Editable(false);
                    model.Field(p => p.CurrentRate).Editable(false);
                    model.Field(p => p.EffectiveDT).Editable(false);
                    model.Field(p => p.NewRate).Editable(true);
                })
                .Update(update => update.Action("UpdateRates", "SFREntry").Data("getGridData"))
                .Create(create => create.Action("UpdateRates", "SFREntry").Data("getGridData"))
                .Read(read => read.Action("GetRates", "SFREntry").Data("getModeAndMeasurement"))
           )     
        )

        <br />
        <button id="btnGo" type="button">Go</button>               
        <br />
        
        @Html.Label("Adjust Rates (By %)")
        <br />
        <input type="text" id="txtRate" size="100" />    
        @Html.RadioButton("Adjust", true)Down
        &nbsp;&nbsp;    
        @Html.RadioButton("Adjust", false)Up
        <br />  
        <button id="btnAdjust" type="button">Adjust</button>                  

    <script type="text/javascript">
        function filterMeasurements() {
            return {
                modes: $("#modes").val()
            };
        }

        function getModeAndMeasurement() {
            var measurement = $("#measurements").val();
            var mode = $("#modes").val();
            return {
                mode: mode,
                measurement: measurement
            };
        }

        function measurementChanged() {
            var grid = $("#myGrid").data("kendoGrid");
            grid.dataSource.read();          
        }

        function error_handler(e) {
            if (e.errors) {
                var message = "Errors:\n";
                $.each(e.errors, function (key, value) {
                    if ('errors' in value) {
                        $.each(value.errors, function () {
                            message += this + "\n";
                        });
                    }
                });
                alert(message);
            }
        }

        $(function () {
            $("#btnGo").click(function () {
                alert('starting POST');
                $.ajax({
                    url: '@Url.Action("UpdateRates ", "SFREntry", Request.RequestContext.RouteData.Values)',
                    type: 'POST',
                    cache: false,
                    traditional: true,
                    dataType: "json",
                    contentType: "application/json",
                    data: kendo.stringify({
                        vm: $("#myGrid").data("kendoGrid").dataSource.view().toJSON()
                    }),
                    success: function () { window.alert('saved'); },
                    error: function() { window.alert('failed'); }
                });
                alert('ending POST');
            });
        });

        function getGridData() {
             var grid = $("#myGrid").data("kendoGrid");
             var vm = grid.dataSource.view();
             alert(vm);
             return vm;
        }

        //test to see if the save event fires
        function onSaveChanges(e) {
            var grid = $("#myGrid").data("kendoGrid");
            var data = grid.dataSource.view();
            var count = data.length;
            alert('In onSaveChanges');
            alert(count);
        }

        //fill in the New Rates column with the old rate, multiplied by amount in txtRate
        $(function () {
            $("#btnAdjust").click(function () {
                var adjustment = $("#txtRate").val() / 100;
                var grid = $("#myGrid").data("kendoGrid");
                var data = grid.dataSource.view();
                var count = data.length;
                for (var i = 0; i < count; i++) {
                    var currentRow = data[i];
                    var currentRate = currentRow.CurrentRate;
                    currentRow.NewRate = (currentRate + (currentRate * adjustment));
                };
                grid.refresh();
            });
        });
    </script>  

Thanks!

--Dan
Dan
Top achievements
Rank 2
 answered on 07 Dec 2012
Narrow your results
Selected tags
Tags
Grid
General Discussions
Charts
Data Source
Scheduler
DropDownList
TreeView
MVVM
Editor
Window
DatePicker
Spreadsheet
Upload
ListView (Mobile)
ComboBox
TabStrip
MultiSelect
AutoComplete
ListView
Menu
Templates
Gantt
Validation
TreeList
Diagram
NumericTextBox
Splitter
PanelBar
Application
Map
Drag and Drop
ToolTip
Calendar
PivotGrid
ScrollView (Mobile)
Toolbar
TabStrip (Mobile)
Slider
Button (Mobile)
Filter
SPA
Drawing API
Drawer (Mobile)
Globalization
LinearGauge
Sortable
ModalView
Hierarchical Data Source
Button
FileManager
MaskedTextBox
View
Form
NavBar
Notification
Switch (Mobile)
SplitView
ListBox
DropDownTree
PDFViewer
Sparkline
ActionSheet
TileLayout
PopOver (Mobile)
TreeMap
ButtonGroup
ColorPicker
Pager
Styling
MultiColumnComboBox
Dialog
Chat
DateRangePicker
Checkbox
Timeline
Drawer
DateInput
ProgressBar
MediaPlayer
ImageEditor
TextBox
OrgChart
Effects
Accessibility
PivotGridV2
ScrollView
BulletChart
Licensing
QRCode
ResponsivePanel
Switch
Wizard
CheckBoxGroup
TextArea
Barcode
Breadcrumb
Collapsible
Localization
MultiViewCalendar
Touch
RadioButton
Stepper
Card
ExpansionPanel
Rating
RadioGroup
Badge
Captcha
Heatmap
AppBar
Loader
Security
TaskBoard
Popover
DockManager
FloatingActionButton
CircularGauge
ColorGradient
ColorPalette
DropDownButton
TimeDurationPicker
ToggleButton
TimePicker
BottomNavigation
Ripple
SkeletonContainer
Avatar
Circular ProgressBar
FlatColorPicker
SplitButton
Signature
Chip
ChipList
VS Code Extension
AIPrompt
PropertyGrid
Sankey
Chart Wizard
OTP Input
SpeechToTextButton
InlineAIPrompt
StockChart
ContextMenu
DateTimePicker
RadialGauge
ArcGauge
AICodingAssistant
+? more
Top users last month
Top achievements
Rank 1
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ivory
Top achievements
Rank 1
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
YF
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Top achievements
Rank 1
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ivory
Top achievements
Rank 1
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
YF
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?